@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&display=swap');

:root {
    --pink: #ffc5d3;
    --yellow: #fff68f;
    --white: #ffffff;
    --rose-ink: #7f4b64;
    --rose-deep: #4e2a3b;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    font-family: 'Oswald', sans-serif;
    color: var(--rose-deep);
    background-color: #fffefb;
    background-image: linear-gradient(160deg, rgba(255, 255, 255, 0.97), rgba(255, 197, 211, 0.16));
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 20px 20px, rgba(255, 197, 211, 1) 6px, transparent 7px),
        radial-gradient(circle at 58px 48px, rgba(255, 246, 143, 1) 4px, transparent 5px),
        radial-gradient(circle at 110px 26px, rgba(255, 197, 211, 1) 3px, transparent 4px);
    background-size: 140px 140px, 140px 140px, 140px 140px;
    opacity: 0.07;
    filter: blur(0.8px);
    -webkit-mask-image: linear-gradient(to bottom, #000 0 16%, transparent 28%, transparent 72%, #000 84%, #000 100%);
    mask-image: linear-gradient(to bottom, #000 0 16%, transparent 28%, transparent 72%, #000 84%, #000 100%);
    z-index: -1;
}

a {
    color: #8f4366;
}

a:hover {
    color: #6f2b4f;
}

.intro-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: grid;
    place-items: center;
    background: linear-gradient(165deg, rgba(255, 197, 211, 0.98), rgba(255, 246, 143, 0.96));
    animation: introFade 3.2s ease forwards;
    pointer-events: none;
}

.flower-bloom {
    width: 170px;
    height: 170px;
    position: relative;
    animation: bloomIn 1.6s ease forwards;
}

.petal {
    position: absolute;
    width: 72px;
    height: 72px;
    border-radius: 60% 40% 60% 40%;
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0 8px 24px rgba(127, 75, 100, 0.2);
}

.p1 {
    top: 2px;
    left: 48px;
}

.p2 {
    top: 48px;
    left: 96px;
    transform: rotate(90deg);
}

.p3 {
    top: 96px;
    left: 48px;
    transform: rotate(180deg);
}

.p4 {
    top: 48px;
    left: 2px;
    transform: rotate(270deg);
}

.center {
    position: absolute;
    top: 62px;
    left: 62px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--yellow);
    border: 2px solid rgba(127, 75, 100, 0.16);
}

@keyframes bloomIn {
    from {
        opacity: 0;
        transform: scale(0.35) rotate(-18deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes introFade {
    0%,
    70% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

.content-shell h1,
.content-shell h2 {
    margin-top: 0;
    letter-spacing: 0.04em;
}

.hero {
    padding: 2rem;
    border-radius: 34px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.72), rgba(255, 197, 211, 0.35));
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: 0 20px 42px rgba(127, 75, 100, 0.12);
    margin-bottom: 1rem;
    text-align: center;
}

.home-hero {
    background: linear-gradient(145deg, rgba(255, 197, 211, 0.78), rgba(255, 246, 143, 0.5) 56%, rgba(255, 255, 255, 0.88));
    box-shadow: 0 24px 56px rgba(90, 40, 60, 0.15);
    position: relative;
    overflow: hidden;
}

.home-hero::after {
    content: "";
    position: absolute;
    inset: auto -8% -32% auto;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.home-hero h1 {
    font-size: clamp(2.4rem, 6vw, 4rem);
    color: #4a2437;
}

.hero-subheading {
    font-weight: 400;
    color: rgba(78, 42, 59, 0.8);
    font-size: clamp(1.05rem, 2.2vw, 1.3rem);
}

.hero-cta {
    padding: 0.75rem 1.45rem;
    font-size: 1.02rem;
    box-shadow: 0 14px 30px rgba(90, 40, 60, 0.16);
}

.hero-cta:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 197, 211, 0.78));
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 0.6rem;
    color: #9d5e79;
}

.section-head {
    margin-bottom: 0.8rem;
    text-align: center;
}

.section-head h1 {
    margin-bottom: 0.35rem;
    font-size: clamp(2.45rem, 6vw, 4.2rem);
    line-height: 0.98;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-wrap: balance;
    text-shadow: 0 3px 0 rgba(255, 255, 255, 0.65), 0 12px 24px rgba(127, 75, 100, 0.16);
}

.page-intro {
    margin: 0.2rem auto 0;
    max-width: 820px;
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    line-height: 1.35;
}

.content-section {
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.48), rgba(255, 197, 211, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 30px;
    padding: 1.2rem 1.35rem;
    margin-bottom: 0.9rem;
    box-shadow: 0 12px 26px rgba(127, 75, 100, 0.08);
}

.home-section {
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.44), rgba(255, 197, 211, 0.15));
    padding: 1.05rem 1.2rem;
}

.home-section h2 {
    color: #56293f;
    font-weight: 650;
}

.story-copy {
    color: rgba(78, 42, 59, 0.74);
    line-height: 1.65;
}

.secondary-cta {
    margin-top: 0.55rem;
}

.card-grid,
.offer-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.glass-card,
.offer-card {
    padding: 1.1rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.74);
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.55), rgba(255, 197, 211, 0.24));
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 24px rgba(127, 75, 100, 0.09);
}

.offer-card {
    transform-style: preserve-3d;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer-card:hover {
    transform: translateY(-3px) rotateX(1deg);
    box-shadow: 0 16px 30px rgba(127, 75, 100, 0.2);
}

.offer-carousel-block {
    margin-top: 0.6rem;
}

.offer-carousel {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}

.offer-viewport {
    overflow: hidden;
}

.offer-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: 0;
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.offer-parallax-card {
    min-height: 360px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.95);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(255, 197, 211, 0.46));
    box-shadow: 0 14px 34px rgba(127, 75, 100, 0.18);
    backdrop-filter: blur(8px);
    padding: 1.5rem 3.6rem 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0.7;
    transform: scale(0.985);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.offer-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.offer-hero {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 0.8rem;
}

.offer-page {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 1.15rem;
}

/* CSS-only parallax sections for the What I Offer page */
.parallax-section {
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 26px;
    margin-bottom: 1.2rem;
    overflow: hidden;
}

.parallax-one {
    background-image:
        linear-gradient(145deg, rgba(255, 197, 211, 0.34), rgba(255, 246, 143, 0.2)),
        url("https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&w=2200&q=80");
}

.parallax-two {
    background-image:
        linear-gradient(145deg, rgba(255, 197, 211, 0.3), rgba(255, 246, 143, 0.22)),
        url("https://images.unsplash.com/photo-1518310383802-640c2de311b2?auto=format&fit=crop&w=2200&q=80");
}

.parallax-three {
    background-image:
        linear-gradient(145deg, rgba(255, 197, 211, 0.3), rgba(255, 246, 143, 0.2)),
        url("https://images.unsplash.com/photo-1581009146145-b5ef050c2e1e?auto=format&fit=crop&w=2200&q=80");
}

.parallax-overlay {
    width: 100%;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(165deg, rgba(48, 18, 33, 0.35), rgba(127, 75, 100, 0.25));
    padding: 1.4rem;
}

.parallax-content {
    max-width: 760px;
    text-align: center;
    color: #fff8fb;
    background: rgba(0, 0, 0, 0.26);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 24px;
    padding: 1.5rem 1.4rem;
}

.parallax-content h2 {
    margin-bottom: 0.7rem;
    font-size: clamp(1.8rem, 5vw, 2.9rem);
}

.parallax-content p {
    margin: 0;
    font-size: clamp(1rem, 2.4vw, 1.2rem);
    line-height: 1.45;
}

.buffer-section {
    padding: clamp(2.1rem, 5vw, 3.5rem) clamp(1rem, 4vw, 2rem);
    margin-bottom: 1.2rem;
    border-radius: 24px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.62), rgba(255, 197, 211, 0.26));
    border: 1px solid rgba(255, 255, 255, 0.74);
    box-shadow: 0 10px 20px rgba(127, 75, 100, 0.08);
}

.buffer-section h2 {
    text-align: left;
    margin-bottom: 0.85rem;
}

.buffer-section p {
    max-width: 100%;
    margin: 0;
    text-align: left;
    line-height: 1.55;
}

@media (min-width: 980px) {
    .buffer-section {
        display: grid;
        grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
        align-items: start;
        gap: 2rem;
    }

    .buffer-section h2 {
        margin: 0;
    }
}

.offer-parallax-card h2 {
    margin-bottom: 0.8rem;
    font-size: 1.9rem;
}

.offer-parallax-card p {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.45;
}

.offer-card-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.95);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 197, 211, 0.42));
    color: var(--rose-deep);
    box-shadow: 0 10px 24px rgba(127, 75, 100, 0.18);
    line-height: 1;
    font-size: 1.15rem;
    z-index: 2;
}

.offer-card-control.prev {
    left: 0.85rem;
}

.offer-card-control.next {
    right: 0.85rem;
}

.offer-card-control:disabled {
    opacity: 0.45;
}

.offer-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 0.8rem;
}

.offer-dot {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 999px;
    border: 0;
    background: rgba(127, 75, 100, 0.35);
    padding: 0;
    transition: transform 0.2s ease, background 0.2s ease;
}

.offer-dot.active {
    background: rgba(127, 75, 100, 0.98);
    box-shadow: 0 0 0 2px rgba(255, 197, 211, 0.55);
    transform: scale(1.2);
}

.price {
    font-size: 1.4rem;
    margin: 0.3rem 0;
    color: #8f4366;
}

.pricing-shell {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    border-radius: 30px;
    padding: clamp(1rem, 2.4vw, 2.1rem);
    background: linear-gradient(130deg, rgba(255, 197, 211, 0.52), rgba(255, 255, 255, 0.85));
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 36px rgba(127, 75, 100, 0.09);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 0.75rem;
}

.pricing-card {
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    box-shadow: 0 15px 40px rgba(90, 40, 60, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(90, 40, 60, 0.14);
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.76), rgba(255, 197, 211, 0.35));
}

.pricing-card h2 {
    text-align: center;
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.pricing-card .price {
    text-align: center;
    font-size: 2.55rem;
    line-height: 1;
    margin-bottom: 0.55rem;
}

.pricing-card .currency {
    font-size: 0.48em;
    vertical-align: top;
    margin-right: 0.05em;
}

.pricing-card .price-meta {
    font-size: 0.42em;
    color: rgba(78, 42, 59, 0.82);
    font-weight: 500;
}

.pricing-card p:last-child {
    margin-top: 0;
    text-align: center;
    line-height: 1.45;
    color: rgba(78, 42, 59, 0.72);
}

.pricing-btn {
    margin-top: auto;
    width: 100%;
    justify-content: center;
    font-weight: 700;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 197, 211, 0.72));
}

.pricing-btn:active {
    transform: translateY(1px) scale(0.99);
}

.featured-plan {
    border: 2px solid rgba(255, 197, 211, 0.95);
    background: linear-gradient(150deg, rgba(255, 232, 239, 0.9), rgba(255, 197, 211, 0.45));
}

.featured-plan .pricing-btn {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 246, 143, 0.75));
}

.plan-badge {
    position: absolute;
    top: -0.55rem;
    right: 0.9rem;
    background: linear-gradient(145deg, rgba(255, 246, 143, 0.92), rgba(255, 197, 211, 0.92));
    color: #4e2a3b;
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
    font-size: 0.74rem;
    letter-spacing: 0.04em;
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.pricing-cta-bar {
    margin-top: 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: linear-gradient(140deg, rgba(78, 42, 59, 0.92), rgba(111, 43, 79, 0.92));
    color: #fff8fb;
    padding: 0.55rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    font-size: 1.05rem;
}

.section-head + .pricing-shell {
    margin-top: 0.35rem;
}

.pricing-cta-bar .glass-button {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 197, 211, 0.75));
    color: #4e2a3b;
    border-color: rgba(255, 255, 255, 0.95);
}

.glass-button,
.contact-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 0.5rem 0.9rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.65), rgba(255, 197, 211, 0.45));
    color: var(--rose-deep);
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(127, 75, 100, 0.15);
    backdrop-filter: blur(8px);
    transition: transform 0.2s ease;
}

.glass-button:hover,
.contact-form button:hover {
    transform: translateY(-1px);
}

.contact-form {
    display: grid;
    gap: 0.65rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--rose-deep);
    padding: 0.55rem 0.7rem;
    font-family: 'Oswald', sans-serif;
}

.google-form-wrap {
    margin-top: 0.7rem;
    border: 2px solid var(--pink);
    border-radius: 24px;
    padding: 0.35rem;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 18px rgba(127, 75, 100, 0.09);
}

.google-form-frame {
    width: 100%;
    min-height: 920px;
    border: 0;
    border-radius: 18px;
    display: block;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1rem;
}

.map-embed-wrap {
    margin-top: 0.7rem;
    border: 2px solid var(--pink);
    border-radius: 24px;
    padding: 0.4rem;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 18px rgba(127, 75, 100, 0.09);
}

.map-frame {
    width: 100%;
    min-height: 320px;
    border: 0;
    border-radius: 12px;
    display: block;
}

.client-carousel {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.7rem;
    align-items: center;
}

.home-highlights .carousel-control {
    width: 2.55rem;
    height: 2.55rem;
    font-size: 1.3rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 197, 211, 0.66));
    border-color: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 22px rgba(90, 40, 60, 0.2);
}

.carousel-viewport {
    overflow: hidden;
    --cards-per-view: 3;
    --carousel-gap: 1rem;
}

.carousel-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - (var(--carousel-gap) * (var(--cards-per-view) - 1))) / var(--cards-per-view));
    gap: var(--carousel-gap);
    transition: transform 0.45s ease;
    width: 100%;
}

.carousel-item {
    min-width: 0;
}

.carousel-control {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.95);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 197, 211, 0.44));
    color: var(--rose-deep);
    box-shadow: 0 8px 20px rgba(127, 75, 100, 0.16);
    line-height: 1;
    font-size: 1.15rem;
}

.carousel-control:disabled {
    opacity: 0.45;
}

.client-card {
    min-height: 190px;
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    place-items: end center;
    padding: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.82);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(255, 246, 143, 0.36));
    box-shadow: 0 12px 20px rgba(127, 75, 100, 0.1);
    transition: transform 0.25s ease;
    position: relative;
    align-content: end;
}

.client-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(40, 20, 32, 0.55), rgba(40, 20, 32, 0.1) 52%, rgba(40, 20, 32, 0));
    pointer-events: none;
}

.client-card:hover {
    transform: scale(1.02);
}

.client-card span {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.84);
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
}

.client-stat {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-top: 0.35rem;
    color: #fff6fb;
    font-size: 0.84rem;
    letter-spacing: 0.03em;
    background: rgba(78, 42, 59, 0.54);
    border-radius: 999px;
    padding: 0.22rem 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.client-photo-1 { background-image: linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 246, 143, 0.16)), url("https://images.unsplash.com/photo-1518611012118-696072aa579a?auto=format&fit=crop&w=900&q=80"); background-size: cover; background-position: center; }
.client-photo-2 { background-image: linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 246, 143, 0.16)), url("https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b?auto=format&fit=crop&w=900&q=80"); background-size: cover; background-position: center; }
.client-photo-3 { background-image: linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 246, 143, 0.16)), url("https://images.unsplash.com/photo-1541534741688-6078c6bfb5c5?auto=format&fit=crop&w=900&q=80"); background-size: cover; background-position: center; }
.client-photo-4 { background-image: linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 246, 143, 0.16)), url("https://images.unsplash.com/photo-1599058917212-d750089bc07e?auto=format&fit=crop&w=900&q=80"); background-size: cover; background-position: center; }
.client-photo-5 { background-image: linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 246, 143, 0.16)), url("https://images.unsplash.com/photo-1576678927484-cc907957088c?auto=format&fit=crop&w=900&q=80"); background-size: cover; background-position: center; }
.client-photo-6 { background-image: linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 246, 143, 0.16)), url("https://images.unsplash.com/photo-1517838277536-f5f99be501cd?auto=format&fit=crop&w=900&q=80"); background-size: cover; background-position: center; }

.affiliate-placeholder {
    min-height: 190px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    border: 2px dashed rgba(127, 75, 100, 0.4);
    background: rgba(255, 255, 255, 0.55);
    color: #7a425d;
}

@media (max-width: 1024px) {
    .card-grid,
    .offer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .parallax-section,
    .parallax-overlay {
        min-height: 86vh;
    }

    .offer-hero,
    .offer-page {
        max-width: 100%;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 1.3rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .content-section {
        padding: 0.95rem;
    }

    .card-grid,
    .offer-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-viewport {
        --cards-per-view: 2;
    }

    .offer-parallax-card {
        min-height: 330px;
        padding: 1.3rem 3.1rem 1.2rem;
    }

    .offer-parallax-card h2 {
        font-size: 1.65rem;
    }

    .page-intro {
        max-width: 100%;
    }

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

    .pricing-cta-bar {
        flex-direction: column;
        text-align: center;
        border-radius: 20px;
    }
}

@media (max-width: 640px) {
    .carousel-viewport {
        --cards-per-view: 1;
    }

    .client-carousel {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .carousel-control {
        display: none;
    }

    .map-frame {
        min-height: 260px;
    }

    .google-form-frame {
        min-height: 780px;
    }

    .offer-card-control {
        width: 2.15rem;
        height: 2.15rem;
    }

    .offer-card-control.prev {
        left: 0.55rem;
    }

    .offer-card-control.next {
        right: 0.55rem;
    }

    .offer-parallax-card {
        min-height: 310px;
        padding: 1.1rem 2.7rem 1rem;
    }

    .offer-parallax-card h2 {
        font-size: 1.45rem;
    }

    .offer-parallax-card p {
        font-size: 1rem;
    }

    .parallax-section,
    .parallax-overlay {
        min-height: 72vh;
    }

    .parallax-content {
        padding: 1.2rem 1rem;
    }

    .buffer-section h2,
    .buffer-section p {
        text-align: center;
    }
}

@media (max-width: 520px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .section-head h1 {
        font-size: clamp(2rem, 9vw, 2.5rem);
        letter-spacing: 0.04em;
    }

    .eyebrow {
        letter-spacing: 0.1em;
    }

    .glass-button,
    .contact-form button {
        width: 100%;
    }
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem rgba(255, 197, 211, 0.8);
}

h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.blazor-error-boundary {
    background: #b32121;
    padding: 1rem;
    color: white;
}

.blazor-error-boundary::after {
    content: 'An error has occurred.';
}

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
    text-align: start;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-track {
        transition: none;
    }

    .offer-track {
        transition: none;
    }

    .client-card,
    .client-card:hover {
        transform: none;
    }

    .parallax-section {
        background-attachment: scroll;
    }
}

/* Mobile and tablet fallback to avoid fixed-background jitter */
@media (max-width: 1366px) {
    .parallax-section {
        background-attachment: scroll;
    }
}

