/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #3D2B2B;
    background: #FFF9F7;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
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; }

/* ─── Custom Properties ─── */
:root {
    --burgundy: #7B2D3B;
    --burgundy-deep: #5C1F2C;
    --burgundy-light: #9E4050;
    --blush: #F4D0CE;
    --blush-light: #FDEEEE;
    --blush-pale: #FFF5F3;
    --cream: #FFF9F7;
    --warm-white: #FFFDFC;
    --text: #3D2B2B;
    --text-light: #7A6060;
    --text-muted: #A89090;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(123,45,59,0.06);
    --shadow-md: 0 8px 30px rgba(123,45,59,0.10);
    --shadow-lg: 0 20px 60px rgba(123,45,59,0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Typography ─── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; color: var(--burgundy); }
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy);
    background: linear-gradient(135deg, var(--blush), var(--blush-light));
    padding: 0.4em 1em;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}
.section-sub {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 560px;
}
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin: 0 auto; }

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

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
}
.btn--primary {
    background: var(--burgundy);
    color: #fff;
    box-shadow: 0 4px 15px rgba(123,45,59,0.3);
}
.btn--primary:hover {
    background: var(--burgundy-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(123,45,59,0.35);
}
.btn--ghost {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
}
.btn--ghost:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}
.btn--white {
    background: #fff;
    color: var(--burgundy);
    box-shadow: var(--shadow-md);
}
.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn--outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }

/* ─── Navigation ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}
.nav.scrolled {
    background: rgba(255,249,247,0.92);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
}
.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--burgundy);
}
.nav.scrolled .nav__logo { color: var(--burgundy); }
.nav__logo-icon { transition: var(--transition); }
.nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav__links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
    position: relative;
}
.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--burgundy);
    transition: var(--transition);
}
.nav__links a:hover { color: var(--burgundy); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
    background: var(--burgundy);
    color: #fff !important;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.875rem;
}
.nav__cta::after { display: none; }
.nav__cta:hover {
    background: var(--burgundy-deep);
    color: #fff !important;
    transform: translateY(-1px);
}
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--burgundy);
    border-radius: 2px;
    transition: var(--transition);
}

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8rem 1.5rem 4rem;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #7B2D3B 0%, #A84456 25%, #D4747E 50%, #E8A0A8 75%, #F4D0CE 100%);
}
.hero__pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 30px 30px;
}
.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}
.hero__headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 2px 40px rgba(0,0,0,0.1);
}
.hero__headline em {
    font-style: italic;
    font-weight: 400;
    opacity: 0.9;
}
.hero__sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255,255,255,0.88);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}
.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}
.hero__stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    align-items: center;
}
.hero__stat {
    text-align: center;
    color: #fff;
}
.hero__stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
}
.hero__stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
    letter-spacing: 0.03em;
}
.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
}
.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── About ─── */
.about {
    padding: 7rem 0;
    background: var(--cream);
}
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about__image-wrap {
    position: relative;
}
.about__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 40%;
    background: linear-gradient(135deg, var(--blush), var(--blush-light));
    border-radius: var(--radius-lg);
    z-index: -1;
}
.about__content { padding: 1rem 0; }
.about__text {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    font-size: 1.02rem;
}
.about__values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}
.about__value {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.about__value svg {
    flex-shrink: 0;
    color: var(--burgundy);
    margin-top: 2px;
}
.about__value strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--burgundy);
    margin-bottom: 0.2rem;
}
.about__value span {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ─── Services ─── */
.services {
    padding: 7rem 0;
    background: var(--warm-white);
}
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}
.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    transition: var(--transition);
    border: 1px solid rgba(123,45,59,0.06);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy), var(--blush));
    opacity: 0;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.service-card:hover::before { opacity: 1; }
.service-card--featured {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    color: #fff;
    border: none;
}
.service-card--featured::before { display: none; }
.service-card--featured:hover { box-shadow: 0 20px 60px rgba(123,45,59,0.25); }
.service-card__badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
}
.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blush-light), var(--blush));
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    color: var(--burgundy);
}
.service-card--featured .service-card__icon {
    background: rgba(255,255,255,0.2);
    color: #fff;
}
.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--burgundy);
}
.service-card--featured h3 { color: #fff; }
.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.service-card--featured p { color: rgba(255,255,255,0.85); }
.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--burgundy);
    transition: var(--transition);
}
.service-card__link:hover { gap: 0.7rem; }
.service-card--featured .service-card__link { color: #fff; }

/* ─── Areas ─── */
.areas {
    padding: 7rem 0;
    background: var(--cream);
}
.areas__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.areas__content { padding: 1rem 0; }
.areas__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
}
.areas__item {
    background: #fff;
    padding: 1.25rem;
    border-radius: var(--radius);
    border: 1px solid rgba(123,45,59,0.06);
    transition: var(--transition);
}
.areas__item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.areas__item-name {
    display: block;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--burgundy);
    margin-bottom: 0.25rem;
}
.areas__item-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.areas__image-stack {
    position: relative;
    height: 600px;
}
.areas__image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
}
.areas__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.areas__image-float {
    position: absolute;
    bottom: -30px;
    left: -30px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid #fff;
}
.areas__image-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ─── Testimonials ─── */
.testimonials {
    padding: 7rem 0;
    background: var(--warm-white);
}
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}
.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    border: 1px solid rgba(123,45,59,0.06);
    transition: var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.testimonial-card__stars {
    display: flex;
    gap: 0.25rem;
    color: #E8A040;
    margin-bottom: 1.25rem;
}
.testimonial-card__text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blush-light), var(--blush));
    border-radius: 50%;
    color: var(--burgundy);
}
.testimonial-card__author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--burgundy);
}
.testimonial-card__author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ─── CTA ─── */
.cta {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}
.cta__bg {
    position: absolute;
    inset: 0;
}
.cta__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--burgundy-deep) 0%, var(--burgundy) 50%, var(--burgundy-light) 100%);
}
.cta__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.cta__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 1.25rem;
}
.cta__text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}
.cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── Contact ─── */
.contact {
    padding: 7rem 0;
    background: var(--cream);
}
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact__text {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.02rem;
}
.contact__details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact__detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.contact__detail-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blush-light), var(--blush));
    border-radius: var(--radius);
    color: var(--burgundy);
    flex-shrink: 0;
}
.contact__detail strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--burgundy);
    margin-bottom: 0.15rem;
}
.contact__detail span,
.contact__detail a {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}
.contact__detail a:hover { color: var(--burgundy); }

/* ─── Form ─── */
.contact__form-wrap {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(123,45,59,0.06);
}
.contact__form { display: flex; flex-direction: column; gap: 1.25rem; }
.form__group { display: flex; flex-direction: column; gap: 0.4rem; }
.form__group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
}
.form__group input,
.form__group select,
.form__group textarea {
    padding: 0.8rem 1rem;
    border: 1.5px solid rgba(123,45,59,0.12);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    border-color: var(--burgundy);
    box-shadow: 0 0 0 3px rgba(123,45,59,0.08);
    background: #fff;
}
.form__group input::placeholder,
.form__group textarea::placeholder {
    color: var(--text-muted);
}
.form__group textarea { resize: vertical; min-height: 100px; }

.contact__success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    gap: 1rem;
}
.contact__success.show { display: flex; }
.contact__success-icon { color: #4CAF50; }
.contact__success h3 {
    font-size: 1.5rem;
    color: var(--burgundy);
    margin-bottom: 0.5rem;
}
.contact__success p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ─── Footer ─── */
.footer {
    background: var(--burgundy-deep);
    color: rgba(255,255,255,0.75);
    padding: 4rem 0 2rem;
}
.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand { max-width: 320px; }
.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 1rem;
}
.footer__tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}
.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.footer__link-col strong {
    display: block;
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.footer__link-col a,
.footer__link-col span {
    display: block;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}
.footer__link-col a:hover { color: #fff; }
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: 1rem;
}
.footer__disclaimer { max-width: 500px; text-align: right; }

/* ─── Mobile Menu ─── */
.nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,249,247,0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: var(--shadow-md);
}
.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── Animations ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .about__grid,
    .areas__split,
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .areas__image-stack { height: 400px; }
    .areas__image-float { left: 20px; }
    .services__grid,
    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer__top { grid-template-columns: 1fr; }
    .footer__links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .nav__links { display: none; }
    .nav__toggle { display: flex; }
    .hero { padding: 7rem 1.5rem 4rem; }
    .hero__stats { gap: 1.5rem; }
    .hero__stat-num { font-size: 1.5rem; }
    .services__grid,
    .testimonials__grid {
        grid-template-columns: 1fr;
    }
    .areas__list { grid-template-columns: 1fr; }
    .areas__image-stack { height: 300px; }
    .areas__image-float { width: 200px; height: 140px; bottom: -15px; left: 10px; }
    .footer__links { grid-template-columns: 1fr 1fr; }
    .footer__bottom { flex-direction: column; text-align: center; }
    .footer__disclaimer { text-align: center; }
}

@media (max-width: 480px) {
    .hero__actions { flex-direction: column; align-items: center; }
    .hero__stats { flex-direction: column; gap: 1rem; }
    .hero__stat-divider { width: 40px; height: 1px; }
    .cta__actions { flex-direction: column; align-items: center; }
    .contact__form-wrap { padding: 1.5rem; }
}
