:root {
    --burgundy: #722F37;
    --burgundy-deep: #5A252C;
    --burgundy-light: #8B3A42;
    --blush: #F5E6E0;
    --blush-light: #FBF4F1;
    --blush-muted: #E8D5CD;
    --cream: #FDF8F5;
    --charcoal: #1A1A1A;
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-muted: #7A7A7A;
    --white: #FFFFFF;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

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

/* ─── NAVIGATION ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(114, 47, 55, 0.08);
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    box-shadow: 0 4px 40px rgba(114, 47, 55, 0.08);
}

.nav__inner {
    max-width: 1280px;
    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;
}

.nav__logo-mark {
    width: 40px;
    height: 40px;
    background: var(--burgundy);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: transform 0.3s var(--ease-out);
}

.nav__logo:hover .nav__logo-mark {
    transform: rotate(-5deg) scale(1.05);
}

.nav__logo-text {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

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

.nav__link {
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    letter-spacing: 0.01em;
}

.nav__link:hover {
    color: var(--burgundy);
    background: rgba(114, 47, 55, 0.06);
}

.nav__cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--burgundy);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.2s, transform 0.2s var(--ease-out);
    margin-left: 8px;
}

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

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.2s;
}

.nav__toggle:hover {
    background: rgba(114, 47, 55, 0.06);
}

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

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    padding: 72px 0 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(114, 47, 55, 0.04) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(245, 230, 224, 0.8) 0%, transparent 50%);
    pointer-events: none;
}

.hero__grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 32px;
}

.hero__eyebrow-line {
    width: 40px;
    height: 1.5px;
    background: var(--burgundy);
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--charcoal);
    margin-bottom: 28px;
}

.hero__headline-accent {
    color: var(--burgundy);
    font-style: italic;
    font-weight: 500;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s var(--ease-out);
    letter-spacing: 0.01em;
}

.btn--primary {
    background: var(--burgundy);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(114, 47, 55, 0.25);
}

.btn--primary:hover {
    background: var(--burgundy-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(114, 47, 55, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid rgba(26, 26, 26, 0.2);
}

.btn--ghost:hover {
    border-color: var(--burgundy);
    color: var(--burgundy);
    transform: translateY(-2px);
}

.btn--light {
    background: var(--white);
    color: var(--burgundy);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn--light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

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

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

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

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 400;
}

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

/* Hero Image Stack */
.hero__right {
    position: relative;
}

.hero__image-stack {
    position: relative;
    height: 680px;
}

.hero__image {
    position: absolute;
    overflow: hidden;
    border-radius: 16px;
}

.hero__image--main {
    width: 100%;
    height: 560px;
    top: 0;
    right: 0;
    box-shadow: 0 25px 80px rgba(114, 47, 55, 0.15);
}

.hero__image--main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.hero__image--main:hover img {
    transform: scale(1.03);
}

.hero__image--accent {
    width: 220px;
    height: 150px;
    bottom: 100px;
    left: -40px;
    box-shadow: 0 16px 48px rgba(114, 47, 55, 0.12);
    border: 4px solid var(--cream);
}

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

.hero__image--badge {
    width: 160px;
    height: 160px;
    bottom: 0;
    right: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__badge {
    width: 100%;
    height: 100%;
    background: var(--burgundy);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 20px;
    box-shadow: 0 16px 48px rgba(114, 47, 55, 0.3);
    animation: badgePulse 4s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.hero__badge-number {
    font-family: var(--font-body);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.7;
}

.hero__badge-year {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero__badge-sub {
    font-size: 0.6875rem;
    opacity: 0.7;
    letter-spacing: 0.05em;
}

/* ─── SECTION COMMON ─── */
.section-eyebrow {
    display: inline-flex;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 16px;
}

.section-eyebrow--light {
    color: rgba(255, 255, 255, 0.6);
}

.section-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.section-headline em {
    font-style: italic;
    font-weight: 500;
    color: var(--burgundy);
}

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

.section-headline--light em {
    color: var(--blush);
}

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

/* ─── SERVICES ─── */
.services {
    padding: 120px 0;
    background: var(--white);
}

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

.services__header .section-subtitle {
    margin: 0 auto;
}

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

.service-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 36px 32px;
    transition: all 0.4s var(--ease-out);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--burgundy);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(114, 47, 55, 0.1);
    border-color: rgba(114, 47, 55, 0.08);
}

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

.service-card--featured {
    background: var(--burgundy);
    color: var(--white);
    grid-column: span 1;
}

.service-card--featured .service-card__icon {
    color: var(--blush);
}

.service-card--featured .service-card__title {
    color: var(--white);
}

.service-card--featured .service-card__desc {
    color: rgba(255, 255, 255, 0.8);
}

.service-card--featured .service-card__link {
    color: var(--blush);
}

.service-card--featured .service-card__link svg {
    stroke: var(--blush);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(114, 47, 55, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    margin-bottom: 24px;
    transition: background 0.3s;
}

.service-card:hover .service-card__icon {
    background: rgba(114, 47, 55, 0.12);
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.service-card__desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--burgundy);
    transition: gap 0.3s var(--ease-out);
}

.service-card__link svg {
    transition: transform 0.3s var(--ease-out);
}

.service-card__link:hover {
    gap: 12px;
}

.service-card__link:hover svg {
    transform: translateX(2px);
}

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

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

.about__image-col {
    position: relative;
}

.about__image-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(114, 47, 55, 0.12);
}

.about__image-main img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.about__image-main:hover img {
    transform: scale(1.02);
}

.about__image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(114, 47, 55, 0.15);
    border: 5px solid var(--cream);
}

.about__image-secondary img {
    width: 340px;
    height: 260px;
    object-fit: cover;
}

.about__content-col {
    padding-right: 20px;
}

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

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

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

.about__value-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--burgundy);
    opacity: 0.2;
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
}

.about__value-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.about__value-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ─── TESTIMONIALS ─── */
.testimonials {
    padding: 120px 0;
    background: var(--burgundy);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 10% 90%, rgba(245, 230, 224, 0.06) 0%, transparent 50%),
                      radial-gradient(circle at 90% 10%, rgba(245, 230, 224, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials__header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 36px 32px;
    transition: all 0.4s var(--ease-out);
}

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

.testimonial-card__stars {
    display: flex;
    gap: 4px;
    color: #F5C518;
    margin-bottom: 20px;
}

.testimonial-card__text {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-card__name {
    font-weight: 600;
    color: var(--white);
    font-size: 0.9375rem;
}

.testimonial-card__role {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ─── CTA ─── */
.cta {
    padding: 120px 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 50%, rgba(114, 47, 55, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.cta__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta__text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 40px;
    max-width: 480px;
}

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

.cta__accent {
    color: var(--blush) !important;
}

.cta__image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.cta__image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.cta__image:hover img {
    transform: scale(1.02);
}

/* ─── CONTACT ─── */
.contact {
    padding: 120px 0;
    background: var(--white);
}

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

.contact__detail {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact__detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(114, 47, 55, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    flex-shrink: 0;
}

.contact__detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact__detail-value {
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.6;
}

.contact__detail-value a {
    color: var(--burgundy);
    transition: color 0.2s;
}

.contact__detail-value a:hover {
    color: var(--burgundy-deep);
    text-decoration: underline;
}

.contact__form-col {
    background: var(--cream);
    border-radius: 20px;
    padding: 48px;
    border: 1px solid rgba(114, 47, 55, 0.06);
}

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

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

.form-label {
    display: block;
    font-size: 0.8125rem;
