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

:root {
    --color-plum: #7B2D3B;
    --color-plum-dark: #5C1E2B;
    --color-plum-light: #9B4D5B;
    --color-amber: #D4880F;
    --color-amber-light: #F0A830;
    --color-amber-pale: #FFF3D6;
    --color-light: #FDF8F4;
    --color-cream: #FDF0E6;
    --color-text: #2D1F24;
    --color-text-muted: #6B5560;
    --color-border: #E8D8D0;
    --color-white: #FFFFFF;
    --font-heading: 'Nunito', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --shadow-sm: 0 2px 8px rgba(123, 45, 59, 0.08);
    --shadow-md: 0 4px 20px rgba(123, 45, 59, 0.12);
    --shadow-lg: 0 8px 40px rgba(123, 45, 59, 0.15);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --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(--color-text);
    background: var(--color-light);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

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

/* ── Typography ───────────────────────────────────── */
.section__label {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-amber);
    margin-bottom: 12px;
    background: var(--color-amber-pale);
    padding: 6px 16px;
    border-radius: 50px;
}

.section__title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.2;
    color: var(--color-plum);
    margin-bottom: 16px;
}

.section__subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    line-height: 1.7;
}

.section__header--center { text-align: center; }
.section__header--center .section__subtitle { margin: 0 auto; }

.section {
    padding: 96px 0;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 50px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-amber);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(212, 136, 15, 0.35);
}
.btn--primary:hover {
    background: var(--color-amber-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 136, 15, 0.45);
}

.btn--outline {
    background: transparent;
    color: var(--color-plum);
    border: 2px solid var(--color-plum);
}
.btn--outline:hover {
    background: var(--color-plum);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn--outline-light {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255,255,255,0.6);
}
.btn--outline-light:hover {
    background: var(--color-white);
    color: var(--color-plum);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn--light {
    background: var(--color-white);
    color: var(--color-plum);
    box-shadow: var(--shadow-md);
}
.btn--light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--sm { padding: 10px 20px; font-size: 0.9rem; }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Navigation ───────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 244, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

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

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--color-plum);
}

.nav__logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-plum);
    color: var(--color-amber-light);
    border-radius: var(--radius-sm);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.nav__toggle span {
    display: block;
    height: 2.5px;
    background: var(--color-plum);
    border-radius: 2px;
    transition: var(--transition);
}
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

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

.nav__link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    padding: 8px 16px;
    border-radius: 50px;
    transition: var(--transition);
}
.nav__link:hover { color: var(--color-plum); background: rgba(123, 45, 59, 0.06); }

.nav__cta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-white);
    background: var(--color-amber);
    padding: 10px 20px;
    border-radius: 50px;
    margin-left: 8px;
    transition: var(--transition);
}
.nav__cta:hover { background: var(--color-amber-light); transform: translateY(-1px); }

/* ── Hero ─────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #7B2D3B 0%, #5C1E2B 30%, #9B4D5B 60%, #D4880F 100%);
    z-index: 0;
}

.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(212, 136, 15, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(155, 77, 91, 0.4) 0%, transparent 60%);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: var(--color-amber-light);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero__title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: 24px;
}

.hero__title-accent {
    color: var(--color-amber-light);
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
}

.hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

.hero__wave svg {
    width: 100%;
    height: 80px;
}

/* ── Services ─────────────────────────────────────── */
.services {
    background: var(--color-light);
}

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

.card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

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

.card__icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card__icon--amber {
    background: var(--color-amber-pale);
    color: var(--color-amber);
}

.card__icon--plum {
    background: rgba(123, 45, 59, 0.1);
    color: var(--color-plum);
}

.card__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--color-plum);
    margin-bottom: 10px;
}

.card__body {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ── About ────────────────────────────────────────── */
.about {
    background: var(--color-cream);
}

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

.about__image-wrapper {
    position: relative;
}

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

.about__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    background: var(--color-amber);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.3;
}

.about__text {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text);
}

.highlight svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Why Us ───────────────────────────────────────── */
.why-us {
    background: var(--color-light);
}

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

.why-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-plum), var(--color-amber));
    opacity: 0;
    transition: var(--transition);
}

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

.why-card:hover::before { opacity: 1; }

.why-card__number {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.4rem;
    color: var(--color-border);
    line-height: 1;
    margin-bottom: 16px;
    transition: var(--transition);
}

.why-card:hover .why-card__number { color: var(--color-amber-pale); }

.why-card__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--color-plum);
    margin-bottom: 10px;
}

.why-card__text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ── Service Area ─────────────────────────────────── */
.service-area {
    background: var(--color-cream);
}

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

.service-area__text {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.service-area__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-area__tag {
    background: var(--color-white);
    color: var(--color-plum);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.service-area__tag:hover {
    background: var(--color-plum);
    color: var(--color-white);
    border-color: var(--color-plum);
}

.map-placeholder {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 48px 36px;
    text-align: center;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.map-placeholder svg {
    color: var(--color-plum);
    margin: 0 auto 16px;
    opacity: 0.7;
}

.map-placeholder p {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-plum);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ── CTA ──────────────────────────────────────────── */
.cta {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-plum) 0%, var(--color-plum-dark) 50%, #3D1520 100%);
}

.cta__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(212, 136, 15, 0.25) 0%, transparent 70%);
}

.cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta__title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--color-white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta__text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── Contact ──────────────────────────────────────── */
.contact {
    background: var(--color-light);
}

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

.contact__text {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

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

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

.contact-detail__icon {
    width: 48px;
    height: 48px;
    background: rgba(123, 45, 59, 0.08);
    color: var(--color-plum);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-plum);
    margin-bottom: 4px;
}

.contact-detail span,
.contact-detail a {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

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

.contact__form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.contact__form-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--color-plum);
    margin-bottom: 28px;
}

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

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-text);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-light);
    color: var(--color-text);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-plum);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(123, 45, 59, 0.08);
}

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

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

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

.contact__success h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--color-plum);
    margin-bottom: 8px;
}

.contact__success p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* ── Footer ───────────────────────────────────────── */
.footer {
    background: var(--color-plum-dark);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}

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

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 16px;
}

.footer__logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--color-amber);
    color: var(--color-plum-dark);
    border-radius: var(--radius-sm);
}

.footer__tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer__links h4,
.footer__contact h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--color-white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer__links a {
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer__links a:hover { color: var(--color-amber-light); }

.footer__contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer__contact a {
    transition: var(--transition);
}
.footer__contact a:hover { color: var(--color-amber-light); }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
}

/* ── Mobile Menu ──────────────────────────────────── */
@media (max-width: 900px) {
    .nav__toggle { display: flex; }

    .nav__menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 248, 244, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }

    .nav__menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav__link { padding: 12px 16px; width: 100%; }
    .nav__cta { margin-left: 0; justify-content: center; margin-top: 8px; }
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 900px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .why-us__grid { grid-template-columns: repeat(2, 1fr); }
    .about__grid,
    .service-area__inner,
    .contact__grid { grid-template-columns: 1fr; gap: 40px; }
    .about__image img { height: 350px; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .section { padding: 64px 0; }
    .services__grid { grid-template-columns: 1fr; }
    .why-us__grid { grid-template-columns: 1fr; }
    .hero__actions { flex-direction: column; }
    .hero__trust { flex-direction: column; gap: 12px; }
    .about__highlights { grid-template-columns: 1fr; }
    .contact__form-wrapper { padding: 24px; }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; text-align: center; }
    .cta__actions { flex-direction: column; }
}

/* ── Animations ───────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
