:root {
    --bg: #f7f7f8;
    --surface: #ffffff;
    --ink: #1f2330;
    --muted: #5e6472;
    --brand: #ea63af;
    --brand-strong: #d54899;
    --forest: #004f2b;
    --forest-strong: #00361d;
    --line: #e7d8e1;
    --ring: rgba(234, 99, 175, 0.35);
    --shadow: 0 20px 40px rgba(25, 25, 35, 0.08);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Outfit", "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 10% 10%, rgba(234, 99, 175, 0.11), transparent 32%),
        radial-gradient(circle at 90% 20%, rgba(0, 79, 43, 0.1), transparent 35%),
        var(--bg);
    line-height: 1.55;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    color: var(--muted);
    margin: 0 0 1rem;
}

h1,
h2,
h3 {
    color: var(--ink);
    line-height: 1.1;
    margin: 0 0 1rem;
    font-family: "Sora", "Trebuchet MS", sans-serif;
}

h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.5rem, 3.2vw, 2.3rem);
}

h3 {
    font-size: 1.35rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(10px);
    background: rgba(247, 247, 248, 0.95);
    border-bottom: 1px solid var(--line);
}

.topbar {
    padding: 0.6rem 4vw;
    background: var(--forest);
    color: #f4f5f6;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.social-link-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffd5eb;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.social-link-icon:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.social-link-icon svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
    display: block;
}

.social-link-icon .sr-only {
    font-size: 0;
    line-height: 0;
}

.footer-socials {
    margin-top: 0.35rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.topbar-link {
    color: #f8dde8;
    font-weight: 500;
}

.topbar-link.phone {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: var(--brand);
    text-decoration-thickness: 2px;
}

.nav-wrap {
    padding: 1rem 4vw;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.brand {
    margin-right: auto;
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
}

.brand-main {
    font-family: "Sora", sans-serif;
    font-weight: 800;
    color: var(--brand);
    font-size: 1.7rem;
    letter-spacing: 0.03em;
}

.brand-sub {
    color: var(--forest);
    font-weight: 600;
    font-size: 0.95rem;
}

.menu-toggle {
    display: none;
    border: 0;
    background: var(--brand);
    color: #fff;
    border-radius: 12px;
    padding: 0.6rem 0.8rem;
    font-weight: 700;
}

.main-nav {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.nav-link {
    padding: 0.55rem 0.7rem;
    border-radius: 10px;
    color: #313746;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(234, 99, 175, 0.16);
    color: #1f2030;
}

.hero {
    margin: 1.1rem 2vw;
    border-radius: calc(var(--radius) + 8px);
    min-height: 62vh;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(100deg, rgba(0, 54, 29, 0.88), rgba(0, 54, 29, 0.45) 45%, rgba(234, 99, 175, 0.25)),
        linear-gradient(130deg, #8fb0d7 8%, #5e8a67 42%, #2e4438 86%);
    box-shadow: var(--shadow);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.02),
        rgba(255, 255, 255, 0.02) 12px,
        transparent 12px,
        transparent 24px
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(760px, 100%);
    padding: clamp(2rem, 6vw, 5rem);
}

.hero h1,
.hero .lead,
.hero .eyebrow {
    color: #ffffff;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 0.6rem;
}

.lead {
    font-size: clamp(1rem, 2vw, 1.35rem);
    max-width: 62ch;
}

.btn {
    display: inline-block;
    border-radius: 12px;
    padding: 0.88rem 1.15rem;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #ffffff;
    background: var(--forest);
    box-shadow: 0 10px 20px rgba(0, 54, 29, 0.24);
}

.btn-primary:hover {
    background: var(--forest-strong);
}

.btn-secondary {
    color: var(--ink);
    background: #fde3f1;
}

.section {
    width: min(1200px, 92vw);
    margin: 3.4rem auto;
}

.section-head {
    margin-bottom: 1.3rem;
}

.split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.4rem;
    align-items: start;
}

.split.reverse {
    grid-template-columns: 1fr 1.1fr;
}

.narrow {
    max-width: 860px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.card {
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.card-body {
    padding: 1rem;
}

.text-link {
    color: var(--forest);
    font-weight: 700;
}

.pill-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.pill {
    background: #ffe6f3;
    border: 1px solid #f7b8d9;
    color: #7f255b;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    font-size: 0.92rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.feature {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem;
}

.quote-band {
    width: min(1200px, 92vw);
    margin: 2rem auto;
    background: linear-gradient(90deg, #f27abd, #e657a9);
    border-radius: var(--radius);
    color: #fff;
    padding: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

form {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.1rem;
    box-shadow: var(--shadow);
}

label {
    display: block;
    margin-bottom: 0.2rem;
    font-weight: 600;
    color: #31374a;
}

input,
select,
textarea {
    width: 100%;
    padding: 0.7rem 0.85rem;
    border-radius: 10px;
    border: 1px solid #d9dbe0;
    background: #fafafa;
    margin-bottom: 0.9rem;
    font: inherit;
}

input:focus,
select:focus,
textarea:focus {
    outline: 0;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--ring);
}

textarea {
    min-height: 130px;
    resize: vertical;
}

.notice {
    border-radius: 12px;
    padding: 0.85rem 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.notice.success {
    background: #ddf6e9;
    color: #074c29;
    border: 1px solid #9fddbc;
}

.notice.error {
    background: #ffe7f2;
    color: #7f255b;
    border: 1px solid #f6badb;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    margin-bottom: 0.7rem;
    overflow: hidden;
}

.faq-button {
    width: 100%;
    border: 0;
    text-align: left;
    background: transparent;
    font: inherit;
    font-weight: 700;
    color: #7f255b;
    cursor: pointer;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 250ms ease;
}

.faq-panel p {
    padding: 0 1rem 1rem;
    margin: 0;
}

.faq-item.open .faq-panel {
    max-height: 300px;
}

.faq-item.open .faq-symbol {
    transform: rotate(45deg);
}

.testimonial-wall {
    background: #101822;
    color: #f4f6fb;
    border-radius: var(--radius);
    padding: 1.3rem;
    position: relative;
    overflow: hidden;
}

.testimonial-wall::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(234, 99, 175, 0.17), rgba(0, 79, 43, 0.15));
}

.testimonial-slide {
    display: none;
    position: relative;
    z-index: 1;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-slide blockquote {
    margin: 0;
    font-size: 1.2rem;
    color: #fbeef6;
    font-style: italic;
}

.testimonial-slide cite {
    display: inline-block;
    margin-top: 0.8rem;
    color: #b9ccdc;
    font-weight: 700;
}

.img-placeholder {
    border-radius: 12px;
    min-height: 220px;
    display: grid;
    place-content: center;
    text-align: center;
    color: #6f4861;
    border: 1px dashed #de8ebd;
    background:
        linear-gradient(130deg, rgba(242, 120, 189, 0.3), rgba(255, 230, 243, 0.86)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3) 10px, transparent 10px, transparent 20px);
}

.img-placeholder.small {
    min-height: 150px;
    border-radius: 0;
}

.site-image {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #fff;
}

.site-image img {
    display: block;
    width: 100%;
    height: auto;
}

.site-image.small img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.site-image.hero-media img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.site-image.logo-media img {
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: #fff;
    padding: 1rem;
}

.site-image.small img {
    aspect-ratio: 16 / 10;
}

.carousel-section {
    width: min(1200px, 92vw);
    margin-top: 1.7rem;
}

.testimonial-carousel {
    background: var(--forest);
    color: #fff;
    border-radius: var(--radius);
    padding: 1.1rem;
    box-shadow: var(--shadow);
}

.testimonial-carousel-track {
    position: relative;
    min-height: 200px;
}

.carousel-slide {
    display: none;
    padding: 0.6rem 0.2rem 0.3rem;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide blockquote {
    margin: 0;
    font-size: 1.1rem;
    color: #fbeef6;
    font-style: italic;
}

.carousel-slide cite {
    display: inline-block;
    margin-top: 0.75rem;
    color: #ffd5eb;
    font-weight: 700;
}

.testimonial-carousel-controls {
    display: flex;
    gap: 0.7rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

.carousel-control {
    border: 0;
    border-radius: 999px;
    padding: 0.55rem 0.95rem;
    background: #ffd5eb;
    color: #173322;
    font-weight: 800;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.site-footer {
    margin-top: 3rem;
    background: #091d14;
    color: #dce9de;
    padding: 2rem 4vw;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    margin-bottom: 1rem;
}

.site-footer h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.site-footer a {
    color: #ffd5eb;
}

.footer-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.4rem;
}

.copyright {
    margin-bottom: 0;
    font-size: 0.92rem;
}

@media (max-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split,
    .form-grid,
    .footer-grid,
    .features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
        padding: 0.55rem 4vw;
    }

    .social-links {
        width: 100%;
        gap: 0.45rem;
    }

    .social-link-icon {
        width: 1.65rem;
        height: 1.65rem;
        flex: 0 0 auto;
    }

    .social-link-icon svg {
        width: 0.85rem;
        height: 0.85rem;
    }

    .topbar-link {
        font-size: 0.82rem;
        word-break: break-word;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .main-nav {
        display: none;
        width: 100%;
        padding-top: 0.8rem;
        flex-direction: column;
    }

    .main-nav.open {
        display: flex;
    }

    .nav-wrap {
        flex-wrap: wrap;
    }

    .hero {
        margin: 0.7rem;
        min-height: 38vh;
    }

    .card-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .site-image.hero-media img,
    .site-image.logo-media img,
    .site-image.small img {
        aspect-ratio: 16 / 9;
        object-fit: cover;
        height: 138px;
        width: 100%;
    }

    .site-image.logo-media img {
        object-fit: contain;
        height: 110px;
        padding: 0.6rem;
    }

    .testimonial-carousel {
        padding: 0.9rem;
    }

    .testimonial-carousel-track {
        min-height: 150px;
    }

    .carousel-slide blockquote {
        font-size: 0.98rem;
    }

    .testimonial-carousel-controls {
        justify-content: space-between;
    }

    .card-body {
        padding: 0.85rem;
    }

    .quote-band {
        flex-direction: column;
        align-items: flex-start;
    }
}
