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

:root {
    --forest: #1a3c34;
    --forest-light: #2a5c4e;
    --forest-dark: #0f261f;
    --cream: #f5f0e8;
    --cream-light: #faf7f2;
    --cream-dark: #e8e0d0;
    --gold: #c9a84c;
    --gold-light: #d4b86a;
    --text: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #7a7a7a;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(26, 60, 52, 0.08);
    --shadow-md: 0 4px 20px rgba(26, 60, 52, 0.1);
    --shadow-lg: 0 8px 40px rgba(26, 60, 52, 0.12);
    --shadow-xl: 0 16px 60px rgba(26, 60, 52, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
}

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

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

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

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 240, 232, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 60, 52, 0.08);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(245, 240, 232, 0.95);
    box-shadow: var(--shadow-sm);
}

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

.nav__brand {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav__brand-accent {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--forest);
    letter-spacing: -0.02em;
}

.nav__brand-sub {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
}

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

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    transition: color var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav__link:hover {
    color: var(--forest);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--forest);
    color: var(--cream);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 100px;
    transition: background var(--transition), transform var(--transition);
}

.nav__cta:hover {
    background: var(--forest-light);
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle-line {
    width: 22px;
    height: 2px;
    background: var(--forest);
    transition: var(--transition);
    border-radius: 2px;
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--cream-light);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: right var(--transition);
}

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

.mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--forest);
    padding: 8px;
}

.mobile-nav__link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--forest);
    padding: 12px 0;
    transition: color var(--transition);
}

.mobile-nav__link:hover {
    color: var(--gold);
}

.mobile-nav__cta {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--forest);
    color: var(--cream);
    font-weight: 600;
    border-radius: 100px;
}

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

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 20% 50%, rgba(26, 60, 52, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero__container {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.hero__card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--cream);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--forest);
    margin-bottom: 28px;
}

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

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--forest);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero__title-accent {
    font-style: italic;
    color: var(--gold);
    position: relative;
}

.hero__subtitle {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 480px;
}

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

.hero__photo {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

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

.hero__photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 60, 52, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

/* Stats */
.hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.stat-card--accent {
    background: var(--forest);
    color: var(--cream);
}

.stat-card__number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 900;
    color: var(--forest);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card--accent .stat-card__number {
    color: var(--gold);
}

.stat-card__label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.4;
}

.stat-card--accent .stat-card__label {
    color: rgba(245, 240, 232, 0.7);
}

/* Hero Scroll */
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: float 2s ease-in-out infinite;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--forest);
    color: var(--cream);
}

.btn--primary:hover {
    background: var(--forest-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--ghost {
    background: transparent;
    color: var(--forest);
    border: 1.5px solid var(--forest);
}

.btn--ghost:hover {
    background: var(--forest);
    color: var(--cream);
}

.btn--outline {
    background: transparent;
    color: var(--forest);
    border: 1.5px solid var(--forest);
}

.btn--outline:hover {
    background: var(--forest);
    color: var(--cream);
}

.btn--lg {
    padding: 18px 36px;
    font-size: 1rem;
}

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

/* ===== MARQUEE ===== */
.marquee {
    background: var(--forest);
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee__track {
    display: flex;
    gap: 24px;
    animation: marquee 25s linear infinite;
}

.marquee span {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(245, 240, 232, 0.6);
    flex-shrink: 0;
}

.marquee__dot {
    color: var(--gold) !important;
    font-size: 0.5rem !important;
    letter-spacing: 0 !important;
}

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

/* ===== SECTION COMMON ===== */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--forest);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

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

.section-desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 560px;
}

.section-header--center {
    text-align: center;
}

.section-header--center .section-desc {
    margin: 0 auto;
}

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

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid rgba(26, 60, 52, 0.06);
}

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

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: var(--radius-md);
    color: var(--forest);
    margin-bottom: 24px;
    transition: background var(--transition), color var(--transition);
}

.service-card:hover .service-card__icon {
    background: var(--forest);
    color: var(--cream);
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.service-card__text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    background: var(--cream);
}

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

.about__photos {
    position: relative;
}

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

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

.about__photo-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 6px solid var(--cream);
}

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

.about__experience-badge {
    position: absolute;
    top: -24px;
    left: -24px;
    background: var(--forest);
    color: var(--cream);
    padding: 24px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

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

.about__experience-text {
    font-size: 0.8125rem;
    font-weight: 500;
    opacity: 0.8;
    line-height: 1.4;
    margin-top: 4px;
}

.about__content {
    max-width: 480px;
}

.about__text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--forest);
}

.about__feature svg {
    color: var(--gold);
    flex-shrink: 0;
}

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

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 16px;
    margin-top: 64px;
}

.gallery__item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    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.05);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 60, 52, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-overlay span {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cream);
}

.gallery__item--large {
    grid-column: 1 / 6;
    grid-row: 1 / 3;
}

.gallery__item--wide {
    grid-column: 8 / 13;
    grid-row: 2;
}

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

.cta-banner__bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 20%, rgba(42, 92, 78, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

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

.cta-banner .section-label {
    color: var(--gold-light);
}

.cta-banner__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--cream);
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.cta-banner__title em {
    color: var(--gold);
    font-style: italic;
}

.cta-banner__text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(245, 240, 232, 0.7);
    margin-bottom: 40px;
}

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

.cta-banner .btn--primary {
    background: var(--gold);
    color: var(--forest);
}

.cta-banner .btn--primary:hover {
    background: var(--gold-light);
}

.cta-banner .btn--outline {
    border-color: var(--cream);
    color: var(--cream);
}

.cta-banner .btn--outline:hover {
    background: var(--cream);
    color: var(--forest);
}

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

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

.contact__text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact__detail {
    display: flex;
    gap: 20px;
}

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

.contact__detail strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contact__detail p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact__detail a {
    color: var(--text-light);
    transition: color var(--transition);
}

.contact__detail a:hover {
    color: var(--gold);
}

/* Form */
.contact__form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.contact__form-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

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

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

.form-input {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--text);
    background: var(--cream-light);
    border: 1.5px solid transparent;
    border-radius: var(--radius-md);
    transition: border-color var(--transition), background var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--forest);
    background: var(--white);
}

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

.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='%231a3c34' 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: 44px;
    cursor: pointer;
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    color: var(--forest);
}

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

.form-success svg {
    color: var(--gold);
    margin-bottom: 16px;
}

.form-success h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== MAP ===== */
.map-section {
    position: relative;
}

.map-section iframe {
    filter: saturate(0.6) contrast(1.1);
    transition: filter var(--transition);
}

.map-section:hover iframe {
    filter: saturate(0.8) contrast(1.05);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--forest-dark);
    color: var(--cream);
    padding: 80px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

.footer__logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer__logo-accent {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cream);
}

.footer__logo-sub {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
}

.footer__tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(245, 240, 232, 0.6);
    max-width: 280px;
}

.footer__links h4,
.footer__contact h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 20px;
}

.footer__links a {
    display: block;
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.55);
    padding: 6px 0;
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--gold);
}

.footer__contact p {
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.55);
    line-height: 1.8;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.footer__contact a {
    color: rgba(245, 240, 232, 0.55);
    transition: color var(--transition);
}

.footer__contact a:hover {
    color: var(--gold);
}

.footer__bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: rgba(245, 240, 232, 0.35);
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    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; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr 340px;
        gap: 32px;
    }

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

    .about__grid {
        gap: 48px;
    }

    .gallery__grid {
        grid-template-rows: repeat(2, 240px);
    }

    .contact__grid {
        gap: 48px;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

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

    .nav__toggle {
        display: flex;
    }

    .hero {
        padding: 100px 20px 80px;
    }

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

    .hero__card {
        padding: 32px 28px;
    }

    .hero__photo {
        display: none;
    }

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

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

    .about__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about__photo-secondary {
        right: -16px;
        bottom: -24px;
    }

    .about__experience-badge {
        top: -16px;
        left: -16px;
    }

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

    .gallery__item--large {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 300px;
    }

    .gallery__item--wide {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 240px;
    }

    .gallery__item {
        min-height: 220px;
    }

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

    .contact__form-wrapper {
        padding: 32px 24px;
    }

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

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

@media (max-width: 480px) {
    .hero__stats {
        grid-template-columns: 1fr;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        justify-content: center;
    }

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

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

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