/*
  COLOR PALETTE — derived from brand primaries
  --purple:       #8650B7  (main, hue 279°)
  --purple-dark:  darkened ~22%, stays in hue  → #3D1F6B
  --purple-light: lightened ~13%, slight desat  → #A97DD1
  --purple-pale:  ~5% sat tint for backgrounds  → #F2EAFA

  --green:        #68B85D  (main, hue 113°)
  --green-dark:   darkened ~20%                 → #3A7832
  --green-light:  lightened ~11%                → #87CB7E
  --green-pale:   ~5% sat tint for backgrounds  → #EDF7EB
*/

:root {
    --purple: #8650B7;
    --purple-dark: #3D1F6B;
    --purple-light: #A97DD1;
    --purple-pale: #F2EAFA;
    --green: #68B85D;
    --green-dark: #3A7832;
    --green-light: #87CB7E;
    --green-pale: #EDF7EB;
    --white: #ffffff;
    --off-white: #FAF9FF;
    --gray-light: #F5F4FA;
    --text: #1E1433;
    --text-light: #3D3450;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

/* ---- LOGO HEADER ---- */
.logo-header {
    background: var(--white);
    padding: 0.5rem 0 0 0.25rem;
    border-bottom: 1px solid #f0eaf8;
    text-align: center;

    img {
        height: 125px;
        width: auto;
    }
}

/* ---- NAV ---- */
nav {
    background: var(--white);
    box-shadow: 0 2px 16px rgba(134, 80, 183, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
}

.home-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 6px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--purple);
    background: var(--purple-pale);
}

.nav-links .cta-nav {
    background: var(--green);
    color: white;
    padding: 9px 18px;
    border-radius: 25px;
}

.nav-links .cta-nav:hover {
    background: var(--green-dark);
    color: white;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--purple);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid var(--purple-pale);
    padding: 16px 20px;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 10px 0;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid var(--gray-light);
    font-size: 0.95rem;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* ---- HERO ---- */
.hero {
    background: linear-gradient(160deg, var(--purple-pale) 0%, #f7f4ff 60%, var(--green-pale) 100%);
    padding: 80px 20px 60px;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(134, 80, 183, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 40px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(104, 184, 93, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    padding-bottom: 60px;
}

.hero-eyebrow {
    font-size: clamp(0.7rem, 2vw, 0.85rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--green-dark);
    margin-bottom: 12px;
    white-space: nowrap;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 700;
    color: var(--purple-dark);
    line-height: 1.18;
    margin-bottom: 18px;
}

.hero-text h1 em {
    font-style: normal;
    color: var(--green-dark);
}

.hero-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 480px;
}

.hero-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: var(--purple);
    color: white;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 6px 20px rgba(134, 80, 183, 0.3);
}

.btn-primary:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(134, 80, 183, 0.35);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--green);
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid var(--green);
    transition: all 0.25s;
}

.btn-outline:hover {
    background: var(--green-pale);
}

.hero-image {
    flex: 0 0 480px;
    position: relative;
}

.hero-img-blob {
    position: relative;
    width: 460px;
    height: 360px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(134, 80, 183, 0.25);
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



/* ---- SECTION SHARED ---- */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--purple-dark);
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 16px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--green));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.75;
}

.why-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: 20px;
    background: var(--off-white);
    border: 1.5px solid rgba(134, 80, 183, 0.07);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--green));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.why-card:hover {
    border-color: var(--purple-pale);
    box-shadow: 0 12px 36px rgba(134, 80, 183, 0.1);
    transform: translateY(-4px);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--purple-pale), var(--green-pale));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--purple-dark);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.75;
}

/* ---- ABOUT / WHY COMBINED ---- */
.about-band {
    background: var(--white);
    padding: 80px 20px;
    border-top: 1px solid rgba(134, 80, 183, 0.07);
}

.about-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--purple-dark);
    margin-bottom: 6px;
    text-align: center;
}

.about-text .accent-line {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--green));
    border-radius: 2px;
    margin: 0 auto 20px;
}

.about-lead {
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto 48px;
    line-height: 1.85;
}

/* ---- ABOUT PILLARS (replaces stats strip) ---- */
.about-pillars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 28px 40px;
    background: var(--off-white);
    border-radius: 20px;
    border: 1px solid rgba(134, 80, 183, 0.08);
    flex-wrap: wrap;
}

.pillar {
    text-align: center;
    flex: 1;
    min-width: 160px;
    padding: 8px 20px;
}

.pillar-word {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--purple);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.pillar-desc {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-top: 5px;
}

.pillar-divider {
    width: 1px;
    height: 52px;
    background: linear-gradient(to bottom, transparent, rgba(134, 80, 183, 0.2), transparent);
    flex-shrink: 0;
    align-self: center;
}

@media (max-width: 600px) {
    .pillar-divider {
        display: none;
    }

    .about-pillars {
        gap: 8px;
        padding: 20px 16px;
    }

    .pillar {
        min-width: 120px;
        padding: 6px 12px;
    }

    .pillar-word {
        font-size: 1.4rem;
    }
}

.about-why-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ---- SERVICES ---- */
.services {
    padding: 80px 20px;
    background: var(--off-white);
    border-top: 1px solid rgba(134, 80, 183, 0.07);
}

.services-grid {
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 36px rgba(134, 80, 183, 0.13);
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    background: var(--white);
    border: 1px solid rgba(134, 80, 183, 0.08);
    display: flex;
    align-items: stretch;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 52px rgba(134, 80, 183, 0.18);
}

.service-img {
    width: 40%;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, var(--purple-dark) 0%, var(--purple) 60%, var(--green-dark) 100%);
    flex-shrink: 0;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 1;
}

.service-img-placeholder svg {
    opacity: 0.45;
}

.service-img-hint {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    text-align: center;
    line-height: 1.5;
}

.service-img-hint strong {
    color: rgba(255, 255, 255, 0.6);
    display: block;
    font-size: 12px;
    margin-bottom: 2px;
}

.service-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 48px;
    z-index: 2;
}

.service-body {
    padding: 40px;
    background: var(--white);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-tag {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green-dark);
    margin-bottom: 10px;
    display: block;
}

.service-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--purple-dark);
    margin-bottom: 14px;
    line-height: 1.2;
}

.service-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.service-pill {
    background: transparent;
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(90, 80, 112, 0.2);
    letter-spacing: 0.02em;
}

.service-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-link {
    font-size: 0.82rem;
    color: white;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 25px;
    border: 1.5px solid var(--purple);
    background: var(--purple);
    transition: all 0.2s;
    white-space: nowrap;
}

.service-link:hover {
    background: var(--purple-dark);
    color: white;
    border-color: var(--purple-dark);
}

.service-link.service-link--seasonal {
    color: white;
    border-color: var(--green);
    background: var(--green);
}

.service-link.service-link--seasonal:hover {
    background: var(--green-dark);
    color: white;
    border-color: var(--green-dark);
}

.service-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* ---- PHOTO GALLERY ---- */
.gallery {
    background: var(--purple-dark);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

/* Subtle decorative orbs */
.gallery::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(169, 125, 209, 0.15) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.gallery::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(135, 203, 126, 0.12) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.gallery .section-title {
    color: white;
}

.gallery .section-subtitle {
    color: rgba(255, 255, 255, 0.65);
}

/*
  Flexbox gallery — truly dynamic layout that respects image dimensions.
  Landscape images expand, portrait images stay compact.
*/
/* ---- CAROUSEL LAYOUT ---- */
.carousel-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.carousel-track {
    display: block;
    position: relative;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, rgba(61, 31, 107, 0.4), rgba(106, 184, 93, 0.3));
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    visibility: hidden;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


/* Navigation buttons */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--green);
    border: none;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(104, 184, 93, 0.3);
}

.carousel-button:hover {
    background: var(--green-dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(104, 184, 93, 0.5);
}

.carousel-button--prev {
    left: 20px;
}

.carousel-button--next {
    right: 20px;
}

/* Dot indicators */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--green);
    width: 32px;
    border-radius: 6px;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}







/* ---- FOOTER ---- */
footer {
    background: var(--purple-dark);
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--green-light);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.social-links a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    transition: background 0.2s;
}

.social-links a:hover {
    background: var(--green);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .about-why-cards {
        grid-template-columns: 1fr 1fr;
    }

    .hero {
        padding: 60px 20px 50px;
    }

    .hero-text {
        padding-bottom: 0;
        text-align: center;
    }

    .hero-text h1 {
        margin-bottom: 14px;
    }

    .hero-inner {
        flex-direction: column-reverse;
        align-items: center;
        gap: 30px;
    }

    .hero-image {
        flex: none;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-img-blob {
        width: 100%;
        max-width: 380px;
        height: 280px;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 600px) {
    .about-why-cards {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 40px 16px 0;
    }

    .about-stats {
        gap: 24px;
        padding: 20px;
    }

    .service-links {
        flex-direction: column;
        gap: 12px;
    }
}

/* Carousel responsive adjustments */
@media (max-width: 768px) {
    .carousel-button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .carousel-button--prev {
        left: 12px;
    }

    .carousel-button--next {
        right: 12px;
    }
}

@media (max-width: 480px) {
    .carousel-track {
        aspect-ratio: 16 / 12;
    }

    .carousel-button {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .carousel-dots {
        gap: 6px;
        margin-top: 16px;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
    }

    .carousel-dot.active {
        width: 24px;
    }
}

/* Smooth fade-in animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1,
.hero-cta-group {
    animation: fadeUp 0.7s ease both;
}

.hero-cta-group {
    animation-delay: 0.22s;
}



/* ---- QUICK QUOTE STRIP (above inquiry form) ---- */
.quick-quote {
    background: linear-gradient(135deg, var(--purple-pale) 0%, var(--green-pale) 100%);
    border-top: 1px solid rgba(134, 80, 183, 0.1);
    padding: 48px 20px;
}

.quick-quote-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.quick-quote-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--purple-dark);
    margin-bottom: 8px;
}

.quick-quote-inner p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.7;
}

.quick-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.quick-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

.required-asterisk {
    color: #E63946;
    font-weight: 700;
}

.quick-form input,
.quick-form select,
.quick-form textarea {
    padding: 13px 16px;
    border: 1.5px solid #E0D8F0;
    border-radius: 12px;
    font-size: 0.97rem;
    font-family: 'Nunito', sans-serif;
    color: var(--text);
    outline: none;
    background: white;
    transition: border-color 0.2s;
    width: 100%;
}

.quick-form input:focus,
.quick-form select:focus,
.quick-form textarea:focus {
    border-color: var(--purple);
}

.quick-form .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
}

@media (max-width: 900px) {
    .service-card {
        flex-direction: column;
    }

    .service-img {
        width: 100%;
        min-height: 280px;
    }

    .service-body {
        padding: 32px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 50px 20px 40px;
    }

    .hero-text h1 {
        font-size: clamp(1.8rem, 4vw, 2.4rem);
        margin-bottom: 12px;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .service-body {
        padding: 24px;
    }

    .service-name {
        font-size: 1.25rem;
    }

    .quick-form-row {
        grid-template-columns: 1fr;
    }
}

.quick-form-notes {
    resize: vertical;
    min-height: 80px;
    line-height: 1.6;
}