/* ============================================
   BONNIE PEAVY LLC — Custom Styles
   ============================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #3d2030;
    background-color: #fffbf7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #800020;
    background: linear-gradient(135deg, #fdf0f3 0%, #fce1e8 100%);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 600;
    line-height: 1.2;
    color: #1a0a10;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #6b4c5c;
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.btn-burgundy {
    background: linear-gradient(135deg, #800020 0%, #a00028 100%);
    color: #fff;
    border-color: #800020;
    box-shadow: 0 4px 16px rgba(128, 0, 32, 0.3), 0 2px 4px rgba(128, 0, 32, 0.2);
}

.btn-burgundy:hover {
    background: linear-gradient(135deg, #6c001a 0%, #800020 100%);
    border-color: #6c001a;
    box-shadow: 0 8px 24px rgba(128, 0, 32, 0.4), 0 4px 8px rgba(128, 0, 32, 0.25);
    transform: translateY(-2px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.7);
    color: #800020;
    border-color: #800020;
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: #800020;
    color: #fff;
    transform: translateY(-2px);
}

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

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: #800020;
    border-color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    background: #fef6ef;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 251, 247, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(128, 0, 32, 0.08);
    transition: all 0.4s ease;
}

.nav-fixed.scrolled {
    background: rgba(255, 251, 247, 0.97);
    box-shadow: 0 4px 30px rgba(128, 0, 32, 0.08);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.nav-brand-mark {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #800020 0%, #a00028 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 2px 8px rgba(128, 0, 32, 0.3);
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-brand-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a0a10;
}

.nav-brand-tag {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #800020;
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a2c3a;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.nav-link:hover {
    color: #800020;
    background: rgba(128, 0, 32, 0.06);
}

.nav-cta {
    font-size: 0.88rem;
    font-weight: 600;
    color: #800020;
    background: linear-gradient(135deg, #fdf0f3 0%, #fce1e8 100%);
    padding: 10px 20px;
    border-radius: 10px;
    margin-left: 8px;
    transition: all 0.25s ease;
    border: 1px solid rgba(128, 0, 32, 0.15);
}

.nav-cta:hover {
    background: linear-gradient(135deg, #800020 0%, #a00028 100%);
    color: #fff;
    border-color: #800020;
    box-shadow: 0 4px 12px rgba(128, 0, 32, 0.3);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-bar {
    width: 24px;
    height: 2px;
    background: #800020;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(160deg, #fffbf7 0%, #fdf0f3 40%, #fce1e8 100%);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 600px 600px at 80% 20%, rgba(128, 0, 32, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 10% 80%, rgba(255, 125, 156, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #800020;
    background: rgba(255, 255, 255, 0.7);
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
    border: 1px solid rgba(128, 0, 32, 0.12);
    backdrop-filter: blur(8px);
}

.hero-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: #1a0a10;
    margin-bottom: 24px;
}

.hero-headline .text-burgundy-700 {
    color: #800020;
}

.hero-subheadline {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a3a48;
    margin-bottom: 36px;
}

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

.hero-trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #6b4c5c;
}

.hero-trust-item svg {
    color: #800020;
    flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(128, 0, 32, 0.15), 0 10px 20px rgba(128, 0, 32, 0.1);
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: 620px;
    object-fit: cover;
    display: block;
}

.hero-image-accent {
    position: absolute;
    inset: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    pointer-events: none;
}

.hero-floating-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: #fff;
    border-radius: 16px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 12px 40px rgba(128, 0, 32, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    animation: float 4s ease-in-out infinite;
}

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

.hero-floating-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fdf0f3 0%, #fce1e8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #800020;
    flex-shrink: 0;
}

.hero-floating-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: #8b6b7a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-floating-value {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #1a0a10;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #8b6b7a;
    letter-spacing: 0.04em;
    animation: scrollBounce 2s ease-in-out infinite;
}

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

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 100px 0;
    background: #fff;
}

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

.service-card {
    background: linear-gradient(160deg, #fffbf7 0%, #fef6ef 100%);
    border: 1px solid rgba(128, 0, 32, 0.06);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #800020, #d93752);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(128, 0, 32, 0.1), 0 8px 16px rgba(128, 0, 32, 0.06);
    border-color: rgba(128, 0, 32, 0.12);
}

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

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #fdf0f3 0%, #fce1e8 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #800020;
    margin-bottom: 20px;
    transition: all 0.35s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #800020 0%, #a00028 100%);
    color: #fff;
    transform: scale(1.05);
}

.service-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a0a10;
    margin-bottom: 10px;
}

.service-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #6b4c5c;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 100px 0;
    background: linear-gradient(160deg, #fdf0f3 0%, #fffbf7 50%, #fef6ef 100%);
}

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

.about-visual {
    position: relative;
}

.about-image-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(128, 0, 32, 0.12);
}

.about-image-main img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    display: block;
}

.about-image-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(128, 0, 32, 0.15);
    border: 4px solid #fff;
}

.about-image-secondary img {
    width: 320px;
    height: 220px;
    object-fit: cover;
    display: block;
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: linear-gradient(135deg, #800020 0%, #a00028 100%);
    border-radius: 20px;
    padding: 20px 24px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(128, 0, 32, 0.3);
    z-index: 2;
}

.about-exp-number {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.about-exp-text {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.about-title {
    margin-bottom: 24px;
}

.about-body {
    font-size: 1rem;
    line-height: 1.85;
    color: #5a3a48;
    margin-bottom: 18px;
}

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

.about-value {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #3d2030;
}

.about-value-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #800020 0%, #a00028 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
    padding: 100px 0;
    background: #fff;
}

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

.why-card {
    background: linear-gradient(160deg, #fffbf7 0%, #fef6ef 100%);
    border: 1px solid rgba(128, 0, 32, 0.06);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(128, 0, 32, 0.08);
    border-color: rgba(128, 0, 32, 0.12);
}

.why-card-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(128, 0, 32, 0.08);
    line-height: 1;
    margin-bottom: 16px;
}

.why-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a0a10;
    margin-bottom: 12px;
}

.why-card-desc {
    font-size: 0.92rem;
    line-height: 1.75;
    color: #6b4c5c;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #800020 0%, #580014 50%, #30000a 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 800px 400px at 20% 50%, rgba(255, 125, 156, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 600px 300px at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    margin-bottom: 36px;
}

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

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 100px 0;
    background: linear-gradient(160deg, #fdf0f3 0%, #fffbf7 50%, #fef6ef 100%);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(128, 0, 32, 0.05);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(128, 0, 32, 0.08);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fdf0f3 0%, #fce1e8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #800020;
    flex-shrink: 0;
}

.contact-info-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8b6b7a;
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: #3d2030;
    line-height: 1.6;
}

.contact-info-value a {
    color: #800020;
    transition: color 0.2s ease;
}

.contact-info-value a:hover {
    color: #6c001a;
    text-decoration: underline;
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(128, 0, 32, 0.08);
}

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 8px;
    box-shadow: 0 12px 40px rgba(128, 0, 32, 0.08);
}

.contact-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
}

.contact-form-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a0a10;
    margin-bottom: 6px;
}

.contact-form-subtitle {
    font-size: 0.9rem;
    color: #8b6b7a;
    margin-bottom: 28px;
}

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

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

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #3d2030;
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    color: #3d2030;
    background: #fffbf7;
    border: 1.5px solid rgba(128, 0, 32, 0.12);
    border-radius: 10px;
    outline: none;
    transition: all 0.25s ease;
}

.form-input::placeholder {
    color: #b89aa8;
}

.form-input:focus {
    border-color: #800020;
    background
