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

:root {
    --plum-50: #faf5f8;
    --plum-100: #f5e9f0;
    --plum-200: #ebd0e0;
    --plum-300: #d9adbf;
    --plum-400: #c4889e;
    --plum-500: #7B3F6B;
    --plum-600: #6b2f5b;
    --plum-700: #5a264d;
    --plum-800: #4a1f40;
    --plum-900: #3a1832;
    --plum-950: #220d1e;
    --amber-50: #fef9ee;
    --amber-100: #fdecd4;
    --amber-200: #fad9a8;
    --amber-300: #f5c072;
    --amber-400: #D4943B;
    --amber-500: #c4802a;
    --amber-600: #a8651e;
    --amber-700: #8a4e16;
    --amber-800: #6d3c10;
    --amber-900: #522c0b;
    --white: #ffffff;
    --off-white: #fefcf9;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --shadow-sm: 0 1px 3px rgba(123, 63, 107, 0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(123, 63, 107, 0.1), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(123, 63, 107, 0.12), 0 4px 12px rgba(0,0,0,0.08);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    background: var(--off-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'DM Serif Display', Georgia, serif;
    line-height: 1.25;
    color: var(--plum-900);
}

a {
    color: var(--plum-600);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--plum-500);
}

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

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

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 252, 249, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(123, 63, 107, 0.08);
    transition: box-shadow var(--transition), background var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(254, 252, 249, 0.95);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-text {
    font-family: 'DM Serif Display', serif;
    font-size: 1.05rem;
    color: var(--plum-800);
    line-height: 1.2;
    white-space: nowrap;
}

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

.nav-links a {
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-links a:hover {
    color: var(--plum-600);
    background: var(--plum-50);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--plum-700);
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.nav-toggle:hover {
    background: var(--plum-50);
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--plum-600);
    color: var(--white);
    border-color: var(--plum-600);
}

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

.btn-amber {
    background: var(--amber-400);
    color: var(--white);
    border-color: var(--amber-400);
}

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

.btn-outline-light {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
    backdrop-filter: blur(8px);
}

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

.btn-outline-dark {
    background: transparent;
    color: var(--plum-700);
    border-color: var(--plum-300);
}

.btn-outline-dark:hover {
    background: var(--plum-50);
    border-color: var(--plum-500);
    color: var(--plum-700);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.88rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

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

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 76px;
    background: linear-gradient(135deg, var(--plum-900) 0%, var(--plum-700) 50%, var(--plum-600) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(212, 148, 59, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 10% 90%, rgba(123, 63, 107, 0.4) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--off-white), transparent);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-top: 40px;
    padding-bottom: 80px;
}

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

.hero-tag {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber-300);
    margin-bottom: 20px;
    padding: 6px 16px;
    background: rgba(212, 148, 59, 0.15);
    border: 1px solid rgba(212, 148, 59, 0.3);
    border-radius: 50px;
}

.hero-headline {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.2;
}

.hero-headline em {
    color: var(--amber-300);
    font-style: italic;
}

.hero-sub {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    line-height: 1.8;
    max-width: 480px;
}

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

.hero-image-wrap {
    position: relative;
}

.hero-image-wrap img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.hero-badge {
    position: absolute;
    bottom: 32px;
    left: -24px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 14px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--plum-700);
}

.hero-badge svg {
    color: var(--amber-400);
}

/* ─── INTRO ─── */
.intro {
    padding: 100px 0;
    background: var(--off-white);
}

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

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

.intro-image-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber-500);
    margin-bottom: 14px;
    padding: 5px 14px;
    background: var(--amber-50);
    border: 1px solid var(--amber-200);
    border-radius: 50px;
}

.h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 20px;
    color: var(--plum-900);
}

.h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--plum-800);
}

.h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--plum-800);
}

.section-sub {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
}

.intro-content p {
    color: var(--gray-600);
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.check-list {
    list-style: none;
    margin-top: 24px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    color: var(--gray-700);
    font-weight: 500;
}

.check-list li::before {
    content: '';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--plum-100);
    border-radius: 50%;
    margin-top: 3px;
    position: relative;
}

.check-list li::after {
    content: '';
    position: absolute;
    display: block;
    width: 6px;
    height: 10px;
    border-left: 2px solid var(--plum-600);
    border-bottom: 2px solid var(--plum-600);
    transform: rotate(-45deg) translate(1px, -1px);
    margin-top: -14px;
    margin-left: 23px;
}

/* Fix check list without position:relative parent issue */
.check-list {
    position: relative;
}

/* ─── SERVICES ─── */
.services {
    padding: 100px 0;
    background: var(--plum-50);
}

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

.section-header {
    max-width: 640px;
    margin: 0 auto 56px;
}

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

.service-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(123, 63, 107, 0.06);
    transition: all var(--transition);
}

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

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

.service-card:hover .service-icon-wrap {
    background: var(--plum-600);
}

.service-card:hover .service-icon-wrap svg {
    stroke: var(--white);
}

.service-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* ─── WHY US ─── */
.why-us {
    padding: 100px 0;
    background: var(--off-white);
}

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

.why-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 36px;
}

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

.why-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--plum-600);
    border-radius: var(--radius-md);
}

.why-item > div > p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.why-image-group {
    position: relative;
}

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

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

.why-img-accent {
    position: absolute;
    bottom: -32px;
    right: -32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--off-white);
}

.why-img-accent img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* ─── CTA STRIP ─── */
.cta-strip {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--plum-700) 0%, var(--plum-600) 100%);
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(212, 148, 59, 0.25) 0%, transparent 60%);
    pointer-events: none;
}

.cta-strip .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

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

.cta-content .h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
}

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

/* ─── VISIT ─── */
.visit {
    padding: 100px 0;
    background: var(--off-white);
}

.visit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.visit-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(123, 63, 107, 0.06);
    text-align: center;
    transition: all var(--transition);
}

.visit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--plum-200);
}

.visit-icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--plum-100);
    border-radius: var(--radius-md);
    margin: 0 auto 18px;
}

.visit-card p {
    color: var(--gray-600);
    font-size: 0.92rem;
    line-height: 1.7;
}

.visit-card p:not(:last-child) {
    margin-bottom: 4px;
}

.phone-link, .email-link {
    color: var(--plum-600);
    font-weight: 700;
    font-size: 1rem;
}

.phone-link:hover, .email-link:hover {
    color: var(--amber-500);
}

.muted {
    color: var(--gray-500);
    font-size: 0.88rem;
}

/* ─── CONTACT ─── */
.contact {
    padding: 100px 0;
    background: var(--plum-50);
}

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

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

.contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--gray-700);
    font-weight: 500;
}

.contact-row a {
    color: var(--plum-700);
    font-weight: 600;
}

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

.contact-map {
    margin-top: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-form-wrap {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(123, 63, 107, 0.08);
}

.contact-form-wrap .h3 {
    margin-bottom: 6px;
}

.contact-form-wrap .muted {
    margin-bottom: 28px;
    display: block;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.form-group label {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--plum-800);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--gray-50);
    color: var(--gray-800);
    transition: all var(--transition);
    outline: none;
    width: 100%;
}

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

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

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

.form-success svg {
    margin: 0 auto 16px;
}

.form-success .h4 {
    color: var(--plum-700);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--gray-600);
}

.contact-form.hidden {
    display: none;
}

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

.logo-footer .logo-text {
    color: var(--white);
}

.logo-text-light {
    color: var(--white) !important;
}

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

.footer-brand p {
    margin-top: 16px;
    font-size: 0.92rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

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

.footer-links ul a {
    color: rgba(255,255,255,0.6);
    font-size: 0.92rem;
    transition: all var(--transition);
}

.footer-links ul a:hover {
    color: var(--amber-300);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 0.92rem;
    margin-bottom: 6px;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ─── MOBILE NAV ─── */
@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: rgba(254, 252, 249, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-bottom: 1px solid rgba(123, 63, 107, 0.1);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

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

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

    .hero-image-wrap {
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-image-wrap img {
        height: 420px;
    }

    .hero-badge {
        left: 16px;
        bottom: 16px;
    }

    .intro-grid,
    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-image-wrap {
        order: -1;
    }

    .why-img-accent {
        right: 16px;
        bottom: -20px;
    }

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

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

    .cta-strip .container {
        flex-direction: column;
        text-align: center;
    }

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

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

@media (max-width: 600px) {
    .services-grid,
    .visit-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

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

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .contact-form-wrap {
        padding: 28px 20px;
    }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        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; }
}

/* Always visible regardless of JS */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
