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

:root {
    --plum-deep: #3D1A36;
    --plum: #6B2F5B;
    --plum-mid: #8B4578;
    --plum-light: #A85D94;
    --plum-pale: #F3E8F0;
    --plum-ghost: #FBF7FA;
    --amber: #F5C518;
    --amber-dark: #D4A017;
    --amber-light: #FDE68A;
    --amber-pale: #FFFBF0;
    --text-dark: #1A0A14;
    --text-mid: #4A3042;
    --text-light: #7A6072;
    --text-muted: #9A8092;
    --white: #FFFFFF;
    --off-white: #FEFAFD;
    --border: rgba(107, 47, 91, 0.12);
    --shadow-sm: 0 1px 3px rgba(61, 26, 54, 0.06);
    --shadow-md: 0 4px 20px rgba(61, 26, 54, 0.08);
    --shadow-lg: 0 12px 40px rgba(61, 26, 54, 0.12);
    --shadow-xl: 0 24px 60px rgba(61, 26, 54, 0.16);
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--off-white);
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

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

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 250, 253, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    background: rgba(254, 250, 253, 0.95);
    box-shadow: var(--shadow-sm);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
}

.nav__logo-mark {
    width: 42px;
    height: 42px;
    background: var(--plum);
    color: var(--amber);
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.nav__logo-text {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

.nav__logo-sub {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--plum);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav__link {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-mid);
    border-radius: 8px;
    transition: all 0.25s var(--ease-out);
}

.nav__link:hover {
    color: var(--plum);
    background: var(--plum-pale);
}

.nav__link--cta {
    background: var(--plum);
    color: var(--white) !important;
    margin-left: 8px;
}

.nav__link--cta:hover {
    background: var(--plum-deep);
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
    z-index: 1001;
}

.nav__toggle-line {
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Overlay */
.nav__overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(26, 10, 20, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s var(--ease-out);
}

.nav__overlay.open {
    opacity: 1;
    visibility: visible;
}

.nav__overlay-inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: var(--off-white);
    padding: 100px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    box-shadow: var(--shadow-xl);
}

.nav__overlay.open .nav__overlay-inner {
    transform: translateX(0);
}

.nav__overlay-link {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}

.nav__overlay-link:hover {
    color: var(--plum);
}

.nav__overlay-link--cta {
    border-bottom: none;
    margin-top: 16px;
    color: var(--plum) !important;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(107, 47, 91, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero__eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero__eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--amber);
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 700;
    line-height: 1.08;
    color: var(--text-dark);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero__headline-accent {
    color: var(--plum);
    font-style: italic;
}

.hero__subhead {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-mid);
    max-width: 480px;
    margin-bottom: 40px;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.btn--primary {
    background: var(--plum);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(107, 47, 91, 0.3);
}

.btn--primary:hover {
    background: var(--plum-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 47, 91, 0.35);
}

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

.btn--ghost:hover {
    background: var(--plum-pale);
    transform: translateY(-2px);
}

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

.hero__trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
}

.hero__trust-item svg {
    color: var(--amber-dark);
    flex-shrink: 0;
}

/* Hero Image */
.hero__image {
    position: relative;
}

.hero__image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--amber);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.6;
}

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

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

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-header__eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 16px;
}

.section-header__title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.12;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-header__title-accent {
    color: var(--plum);
    font-style: italic;
}

.section-header__title--light {
    color: var(--white);
}

.section-header__title-accent-light {
    color: var(--amber);
    font-style: italic;
}

.section-header__desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-mid);
}

.section-header__eyebrow--light {
    color: var(--amber);
}

/* ===== SERVICES ===== */
.services {
    padding: 100px 0;
    background: var(--off-white);
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.35s var(--ease-out);
    position: relative;
    overflow: hidden;
}

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

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

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

.service-card__icon {
    width: 56px;
    height: 56px;
    background: var(--plum-pale);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
    margin-bottom: 20px;
    transition: all 0.3s var(--ease-out);
}

.service-card:hover .service-card__icon {
    background: var(--plum);
    color: var(--amber);
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 21px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-card__desc {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-light);
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: var(--plum-ghost);
}

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

.about__image-stack {
    position: relative;
}

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

.about__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about__image-secondary {
    position: absolute;
    bottom: -32px;
    right: -24px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--off-white);
}

.about__image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about__image-badge {
    position: absolute;
    top: -16px;
    right: 40px;
    background: var(--amber);
    color: var(--text-dark);
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.about__badge-number {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.about__badge-text {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.about__content {
    max-width: 480px;
}

.about__body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 20px;
}

.about__values {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about__value {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.about__value-marker {
    width: 8px;
    height: 8px;
    background: var(--amber);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== WHY US ===== */
.why-us {
    padding: 100px 0;
    background: var(--plum);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 197, 24, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.why-us::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 197, 24, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.why-us__inner {
    position: relative;
    z-index: 1;
}

.why-us__content {
    text-align: center;
    margin-bottom: 64px;
}

.why-us__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat {
    text-align: center;
    padding: 32px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s var(--ease-out);
}

.stat:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.stat__number {
    display: block;
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 700;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 12px;
}

.stat__label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* ===== CTA / CONTACT ===== */
.cta {
    padding: 100px 0;
    background: var(--off-white);
}

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

.cta__desc {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-mid);
    margin-bottom: 36px;
}

.cta__details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta__detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: var(--text-mid);
    transition: color 0.2s;
}

.cta__detail:hover {
    color: var(--plum);
}

.cta__detail svg {
    color: var(--plum);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Form */
.cta__form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.cta__form-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 28px;
}

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

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

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--text-dark);
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    outline: none;
    transition: all 0.25s var(--ease-out);
}

.form-input:focus {
    border-color: var(--plum);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(107, 47, 91, 0.08);
}

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

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

.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 18px;
    background: #E8F5E9;
    border: 1px solid #A5D6A7;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #2E7D32;
}

.form-success svg {
    color: #4CAF50;
    flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 64px 0 0;
}

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

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__brand .nav__logo-mark {
    width: 48px;
    height: 48px;
    font-size: 17px;
}

.footer__brand-name {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.footer__brand-desc {
    font-size: 14px;
    line-height: 1.7;
    max-width: 280px;
}

.footer__heading {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 20px;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
}

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

.footer__links li:last-child {
    line-height: 1.6;
}

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

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

.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__grid {
        gap: 40px;
    }

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

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

    .about__grid {
        gap: 48px;
    }
}

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

    .nav__toggle {
        display: flex;
    }

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

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

    .hero__image {
        order: -1;
    }

    .hero__image-wrapper {
        border-radius: 20px;
    }

    .hero__image-accent {
        width: 80px;
        height: 80px;
        bottom: -12px;
        left: -12px;
    }

    .hero__headline {
        font-size: clamp(36px, 8vw, 52px);
    }

    .hero__trust {
        gap: 16px;
    }

    .services {
        padding: 72px 0;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 28px 24px;
    }

    .about {
        padding: 72px 0;
    }

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

    .about__image-secondary {
        right: -8px;
        bottom: -24px;
    }

    .about__content {
        max-width: 100%;
    }

    .why-us {
        padding: 72px 0;
    }

    .why-us__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat__number {
        font-size: 32px;
    }

    .cta {
        padding: 72px 0;
    }

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

    .cta__form {
        padding: 28px;
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 88px 0 72px;
    }

    .hero__actions {
        flex-direction: column;
    }

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

    .hero__trust {
        flex-direction: column;
        gap: 12px;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .why-us__stats {
        grid-template-columns: 1fr 1fr;
    }

    .cta__form {
        padding: 24px;
    }
}
