/* Golden Sparrow — premium public UI (Cormorant Garamond + Outfit) */
:root {
    --gs-grad: linear-gradient(135deg, #F6E7B2 0%, #E3C463 28%, #C9A227 62%, #9C7A18 100%);
    --gs-grad-soft: linear-gradient(160deg, rgba(243, 224, 212, 0.95) 0%, rgba(234, 212, 198, 0.4) 42%, rgba(201, 162, 39, 0.1) 100%);
    --gs-mesh:
        radial-gradient(900px 420px at 8% -10%, rgba(201, 162, 39, 0.16), transparent 55%),
        radial-gradient(720px 380px at 96% 8%, rgba(183, 110, 121, 0.1), transparent 50%),
        radial-gradient(640px 360px at 50% 110%, rgba(20, 17, 12, 0.04), transparent 55%);
    --card-shadow:
        0 2px 6px rgba(20, 17, 12, 0.05),
        0 14px 32px rgba(20, 17, 12, 0.10),
        0 28px 56px rgba(20, 17, 12, 0.08);
    --card-shadow-hover:
        0 10px 20px rgba(20, 17, 12, 0.08),
        0 24px 48px rgba(20, 17, 12, 0.16),
        0 32px 64px rgba(156, 122, 24, 0.18);
}

body.site-neutral,
body.site-neutral button,
body.site-neutral input,
body.site-neutral select,
body.site-neutral textarea,
body.site-neutral .blog-content,
body.site-neutral .blog-content *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(i):not(svg) {
    font-family: var(--font-sans);
}

body.site-neutral h1,
body.site-neutral h2,
body.site-neutral h3,
body.site-neutral h4,
body.site-neutral h5,
body.site-neutral h6,
body.site-neutral .gold-text {
    font-family: var(--font-serif);
}

.section-dark .gold-text,
.cta-band .gold-text,
footer .gold-text {
    background: linear-gradient(120deg, #F6E7B2 0%, #E3C463 50%, #C9A227 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.public-page-hero h1,
.public-page-hero .eyebrow,
.public-page-section:not(.section-dark) h1,
.public-page-section:not(.section-dark) h2,
.public-page-section:not(.section-dark) h3,
.public-page-section:not(.section-dark) h4,
.adv-card.light-card h3,
.vendor-card h4,
.public-panel h2,
.public-panel h3,
.gallery-info-pane h4 {
    color: #14110C;
}

.public-page-hero .sub,
.public-page-section:not(.section-dark) p,
.adv-card.light-card p,
.vendor-card p,
.public-panel p,
.gallery-info-pane p {
    color: #2A241A;
}

.public-page-section:not(.section-dark),
.locations-section {
    color: #14110C;
    background:
        var(--gs-mesh),
        linear-gradient(180deg, #F3E2D4 0%, #EAD4C6 48%, #E4CBBB 100%);
}

.public-page-section.section-dark {
    background:
        radial-gradient(900px 420px at 8% -10%, rgba(227, 196, 99, 0.16), transparent 55%),
        radial-gradient(720px 380px at 96% 8%, rgba(201, 162, 39, 0.1), transparent 50%),
        linear-gradient(180deg, #1A160F 0%, #14110C 52%, #0F0C08 100%);
}

.locations-section,
.process-section {
    overflow: hidden;
}

.section-head .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    color: #14110C;
}

/* City carousel */
.city-slider-wrap {
    position: relative;
    padding: 8px 56px 4px;
}

.city-slider-viewport {
    overflow: hidden;
    width: 100%;
}

.city-slider {
    display: flex;
    gap: 18px;
    overflow: visible;
    scroll-snap-type: none;
    padding: 0;
    will-change: transform;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.city-slider::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.city-slider .city-card {
    flex: 0 0 calc((100% - 72px) / 5);
    background: #F3E0D4;
    border: 1px solid rgba(20, 17, 12, 0.08);
    border-radius: 18px;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(8px);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.35s ease;
}

.city-slider .city-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(201, 162, 39, 0.28);
}

.city-card-photo {
    height: 168px;
    position: relative;
    background:
        linear-gradient(145deg, rgba(227, 196, 99, 0.35), rgba(156, 122, 24, 0.18)),
        #E8C0AC;
}

.city-card-photo::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(20, 16, 10, 0.22));
    pointer-events: none;
}

.city-card-photo img {
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.city-slider .city-card:hover .city-card-photo img {
    transform: scale(1.08);
}

.city-card-photo img.is-broken {
    display: none;
}

.city-card-photo img.is-broken + .city-card-fallback,
.city-card-photo:not(:has(img:not(.is-broken))) .city-card-fallback {
    display: flex;
}

.city-card-photo img:not(.is-broken) + .city-card-fallback {
    display: none;
}

.city-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 46px;
    height: 46px;
    border: 0;
    background: var(--gs-grad);
    color: #14110C;
    box-shadow: 0 12px 26px rgba(156, 122, 24, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.city-slider-btn:hover {
    background: var(--gs-grad);
    color: #14110C;
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 16px 30px rgba(156, 122, 24, 0.38);
}

.city-slider-prev { left: 0; }
.city-slider-next { right: 0; }

/* How it works */
.process-section {
    position: relative;
}

.process-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    position: relative;
}

.process-track::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #E3C463, #C9A227, #E3C463, transparent);
    opacity: 0.7;
    pointer-events: none;
}

.process-track.is-timeline {
    grid-template-columns: 1fr;
    max-width: 820px;
    margin: 0 auto;
}

.process-track.is-timeline::before {
    display: none;
}

.process-card {
    position: relative;
    background: #F3E0D4;
    border: 1px solid rgba(20, 17, 12, 0.08);
    border-radius: 22px;
    padding: 36px 28px 32px;
    text-align: center;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
}

.process-card-glow {
    position: absolute;
    inset: -40% auto auto -30%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(227, 196, 99, 0.42), rgba(183, 110, 121, 0.18) 42%, transparent 70%);
    pointer-events: none;
}

.process-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--gs-grad);
    color: #14110C;
    font-size: 24px;
    box-shadow: 0 12px 24px rgba(201, 162, 39, 0.32);
    position: relative;
    z-index: 1;
}

.process-num {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #14110C;
    margin-bottom: 8px;
}

.process-card h3 {
    font-size: 22px;
    color: #14110C;
    margin-bottom: 10px;
}

.process-card p {
    color: #2A241A;
    font-size: 14.5px;
    line-height: 1.7;
    margin: 0;
}

.process-track.is-timeline .process-card {
    display: grid;
    grid-template-columns: 88px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 18px;
    text-align: left;
    padding: 28px 30px;
}

.process-track.is-timeline .process-icon {
    grid-row: 1 / span 3;
    margin: 0;
}

.process-track.is-timeline .process-num,
.process-track.is-timeline h3,
.process-track.is-timeline p {
    grid-column: 2;
}

.reveal.visible .process-card,
.reveal.visible .city-card,
.reveal.visible .vendor-card,
.reveal.visible .adv-card,
.reveal.visible .home-blog-card,
.reveal.visible .gallery-item-card,
.reveal.visible .testimonial-card,
.reveal.visible .faq-item,
.reveal.visible .public-panel,
.reveal.visible .about-stat-card {
    animation: gsCardIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal.visible .process-card { animation-delay: calc(var(--i, 0) * 90ms); }

.reveal.visible :is(.city-card, .vendor-card, .adv-card, .home-blog-card, .gallery-item-card, .testimonial-card, .faq-item, .public-panel, .about-stat-card):nth-child(1) { animation-delay: 0.04s; }
.reveal.visible :is(.city-card, .vendor-card, .adv-card, .home-blog-card, .gallery-item-card, .testimonial-card, .faq-item, .public-panel, .about-stat-card):nth-child(2) { animation-delay: 0.12s; }
.reveal.visible :is(.city-card, .vendor-card, .adv-card, .home-blog-card, .gallery-item-card, .testimonial-card, .faq-item, .public-panel, .about-stat-card):nth-child(3) { animation-delay: 0.20s; }
.reveal.visible :is(.city-card, .vendor-card, .adv-card, .home-blog-card, .gallery-item-card, .testimonial-card, .faq-item, .public-panel, .about-stat-card):nth-child(4) { animation-delay: 0.28s; }
.reveal.visible :is(.city-card, .vendor-card, .adv-card, .home-blog-card, .gallery-item-card, .testimonial-card, .faq-item, .public-panel, .about-stat-card):nth-child(5) { animation-delay: 0.36s; }
.reveal.visible :is(.city-card, .vendor-card, .adv-card, .home-blog-card, .gallery-item-card, .testimonial-card, .faq-item, .public-panel, .about-stat-card):nth-child(6) { animation-delay: 0.44s; }
.reveal.visible :is(.city-card, .vendor-card, .adv-card, .home-blog-card, .gallery-item-card, .testimonial-card, .faq-item):nth-child(7) { animation-delay: 0.52s; }
.reveal.visible :is(.city-card, .vendor-card, .adv-card, .home-blog-card, .gallery-item-card, .testimonial-card, .faq-item):nth-child(8) { animation-delay: 0.60s; }
.reveal.visible :is(.city-card, .vendor-card, .home-blog-card, .gallery-item-card, .faq-item):nth-child(n + 9) { animation-delay: 0.68s; }

@keyframes gsCardIn {
    from {
        opacity: 0;
        translate: 0 28px;
    }
    to {
        opacity: 1;
        translate: 0 0;
    }
}

/* Cards / services / advantages */
.vendor-card,
.adv-card.light-card,
.testimonial-card,
.public-panel {
    background: #F3E0D4;
    border-color: rgba(20, 17, 12, 0.08);
    color: #14110C;
    box-shadow: var(--card-shadow);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.35s ease;
}

.vendor-card:hover,
.adv-card.light-card:hover,
.testimonial-card:hover,
.public-panel:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 162, 39, 0.28);
    box-shadow: var(--card-shadow-hover);
}

.section-dark .vendor-card {
    background: #16120d;
}

.vendor-icon,
.adv-icon {
    background: var(--gs-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--gold);
}

.site-footer {
    padding-top: 0;
}

.footer-cta {
    border-bottom: 1px solid rgba(201, 162, 39, 0.18);
    padding: 64px 0 48px;
    text-align: left;
}

.site-footer .footer-grid {
    padding-top: 48px;
    padding-bottom: 56px;
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.footer-cta-copy .eyebrow {
    margin-bottom: 10px;
}

.footer-cta-copy h2 {
    color: #f8f5ef;
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 500;
    margin: 0 0 8px;
    line-height: 1.2;
}

.footer-cta-copy p {
    margin: 0;
    color: rgba(243, 234, 216, 0.72);
    font-size: 15px;
    max-width: 520px;
}

.footer-cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

@media (max-width: 800px) {
    .footer-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-cta-copy h2 {
        font-size: 26px;
    }
}

.btn-primary {
    box-shadow: 0 10px 22px rgba(156, 122, 24, 0.22);
}

.public-page-hero {
    color: #14110C;
    background:
        radial-gradient(circle at 50% -10%, rgba(201, 162, 39, 0.16), transparent 52%),
        linear-gradient(180deg, #F3E2D4 0%, #EAD4C6 100%);
}

.how-we-work {
    position: relative;
}

.process-track.is-six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 22px;
}

.process-track.is-six::before {
    display: none;
}

.process-card-numbered {
    text-align: left;
    padding: 28px 26px 26px;
}

.process-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.process-number {
    width: 48px;
    height: 48px;
    margin: 0;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--gs-grad);
    color: #14110C;
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(201, 162, 39, 0.28);
    position: relative;
    z-index: 1;
}

.process-card-numbered .process-icon {
    width: 44px;
    height: 44px;
    margin: 0;
    font-size: 16px;
    box-shadow: none;
    background: rgba(201, 162, 39, 0.16);
    color: #9C7A18;
}

.process-card-numbered h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.process-card-numbered p {
    font-size: 14.5px;
}

.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.home-blog-card {
    background: #F3E0D4;
    border: 1px solid rgba(20, 17, 12, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.16);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.home-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
}

.home-blog-media {
    display: block;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(227, 196, 99, 0.28), rgba(156, 122, 24, 0.12));
}

.home-blog-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-blog-card:hover .home-blog-media img {
    transform: scale(1.07);
}

.home-blog-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #14110C;
    font-size: 28px;
}

.home-blog-body {
    padding: 20px 22px 24px;
}

.home-blog-body time {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #14110C;
}

.home-blog-body h3 {
    font-size: 20px;
    margin: 8px 0 10px;
    color: #14110C;
}

.home-blog-body h3 a {
    color: inherit;
    text-decoration: none;
}

.home-blog-body p {
    color: #2A241A;
    font-size: 14px;
    margin: 0 0 14px;
}

.home-blog-link {
    font-size: 13px;
    font-weight: 600;
    color: #14110C;
}

@media (max-width: 1100px) {
    .process-track {
        grid-template-columns: 1fr;
    }

    .process-track.is-six {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-track::before {
        display: none;
    }

    .city-slider-wrap {
        padding: 8px 44px 4px;
    }

    .faq-split {
        grid-template-columns: 1fr;
    }

    .faq-visual {
        min-height: 320px;
    }

    .section-head-copy h2 {
        font-size: 34px;
    }
}

@media (max-width: 900px) {
    .home-blog-grid,
    .gallery-grid.home-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .process-track.is-six {
        grid-template-columns: 1fr;
    }

    .home-blog-grid,
    .gallery-grid.home-gallery-grid,
    .faq-split {
        grid-template-columns: 1fr;
    }

    .section-head-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .public-page-section .container {
        display: flex;
        flex-direction: column;
    }

    .public-page-section .section-head-row {
        display: contents;
    }

    .public-page-section .section-head-copy {
        order: 1;
        margin-bottom: 28px;
    }

    .public-page-section .container > *:not(.section-head-copy):not(.section-head-action) {
        order: 2;
    }

    .public-page-section .section-head-action {
        order: 3;
        align-self: center;
        margin-top: 28px;
    }
}

.section-head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 42px;
}

.section-head-copy {
    max-width: 720px;
}

.section-head-row .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    color: #14110C;
}

.section-head-copy h2 {
    font-size: 46px;
    font-weight: 500;
    color: #14110C;
    margin: 10px 0 12px;
    line-height: 1.15;
}

.section-head-copy p {
    margin: 0;
    color: #2A241A;
    font-size: 15px;
    font-weight: 400;
}

.section-head-action {
    flex-shrink: 0;
    white-space: nowrap;
}

.section-dark .section-head-copy h2 {
    color: #f8f5ef;
}

.section-dark .section-head-copy p {
    color: rgba(243, 234, 216, 0.72);
}

.section-dark .section-head-row .eyebrow {
    color: var(--gold);
    background: rgba(201, 162, 39, 0.12);
    border-color: rgba(201, 162, 39, 0.28);
}

.gs-slider-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 18px;
    will-change: transform;
}

.gs-slider-viewport {
    overflow: hidden;
}

.testimonial-slider-wrap {
    padding-bottom: 0;
}

.testimonial-slider-wrap .gs-slider-viewport {
    overflow: hidden;
}

.gs-slider-prev { left: 0; }
.gs-slider-next { right: 0; }

.testimonials-track .testimonial-card {
    min-height: 0;
    height: auto;
    display: flex;
    flex-direction: column;
}

.js-gs-slider .city-card,
.js-gs-slider .testimonial-card,
.city-slider .city-card,
.testimonials-track .testimonial-card {
    box-shadow: none !important;
}

.js-gs-slider .city-card:hover,
.js-gs-slider .testimonial-card:hover,
.city-slider .city-card:hover,
.testimonials-track .testimonial-card:hover {
    transform: none;
    box-shadow: none !important;
}

.gallery-grid.home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.home-gallery-grid .gallery-item-card {
    padding: 0;
    border-radius: 18px;
    background: #F3E0D4;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.home-gallery-grid .gallery-item-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
}

.gallery-item-card {
    box-shadow: var(--card-shadow);
}

.gallery-item-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
}

.gallery-img-wrapper img {
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item-card:hover .gallery-img-wrapper img {
    transform: scale(1.07);
}

.home-gallery-grid .gallery-img-wrapper {
    height: 200px;
}

.home-gallery-grid .gallery-info-pane h4 {
    font-size: 16px;
}

@media (max-width: 900px) {
    .gallery-grid.home-gallery-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .home-gallery-grid .gallery-item-card {
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
    }

    .home-gallery-grid .gallery-img-wrapper {
        height: 230px;
    }

    .home-gallery-grid .gallery-info-pane {
        padding: 16px 18px 18px;
    }

    .home-gallery-grid .gallery-info-pane h4 {
        font-size: 18px;
    }
}

.film-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    padding-top: 56.25%;
    border: 1px solid rgba(201, 162, 39, 0.28);
    box-shadow: 0 28px 60px rgba(20, 16, 10, 0.16);
    background: #14110C;
}

.film-frame iframe,
.film-frame video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    background: #14110C;
}

.faq-split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 42px;
    align-items: stretch;
}

@media (max-width: 900px) {
    .faq-home-section .faq-split {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .faq-home-section .faq-visual {
        order: -1;
        width: 100%;
        min-height: 220px;
        border-radius: 18px;
    }

    .faq-home-section .faq-wrapper {
        order: 2;
        width: 100%;
    }

    .faq-home-section .faq-item {
        width: 100%;
        padding: 18px 18px;
    }

    .faq-home-section .faq-trigger h4 {
        font-size: 15px;
        padding-right: 12px;
    }
}

.faq-home-section .faq-wrapper {
    max-width: none;
    margin: 0;
    gap: 14px;
}

.faq-visual {
    position: relative;
    min-height: 460px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.28);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.faq-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-visual-caption {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 1;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(20, 17, 12, 0.72);
    color: #f8f5ef;
    font-size: 14px;
    letter-spacing: 0.02em;
    backdrop-filter: blur(8px);
}

.section-dark .faq-item {
    background: #F3E0D4;
    border-color: rgba(20, 17, 12, 0.08);
    box-shadow: var(--card-shadow);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.section-dark .faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.section-dark .faq-trigger h4 {
    color: #14110C;
}

.section-dark .faq-answer {
    color: #2A241A;
}

.section-dark .gallery-item-card {
    background: #F3E0D4;
}

.gallery-item-card {
    padding: 0 !important;
}

.home-blog-body h3 {
    font-size: 18px;
}

.service-filter-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 0 0 32px;
}

.service-filter-bar label {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: #14110C;
}

.service-filter-bar select {
    min-width: 240px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(20, 17, 12, 0.16);
    background: #F3E0D4;
    color: #14110C;
    padding: 0 16px;
}

.service-filter-clear {
    font-size: 13px;
    font-weight: 600;
    color: #14110C;
}

.gallery-media-tabs {
    display: flex;
    gap: 8px;
    margin: 0 0 22px;
    padding: 6px;
    width: fit-content;
    max-width: 100%;
    background: #F3E0D4;
    border: 1px solid rgba(20, 17, 12, 0.12);
    border-radius: 999px;
}

.gallery-media-tabs a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    padding: 10px 20px;
    border-radius: 999px;
    color: #14110C;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.gallery-media-tabs a.is-active {
    background: #14110C;
    color: #E3C463;
}

.gallery-img-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.gallery-play i {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(20, 17, 12, 0.72);
    color: #E3C463;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.about-stat-card {
    display: grid;
    gap: 16px;
    padding: 28px;
    border-radius: 22px;
    background: #F3E0D4;
    border: 1px solid rgba(20, 17, 12, 0.08);
    box-shadow: var(--card-shadow);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.about-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.about-stat strong {
    display: block;
    font-size: 22px;
    color: #14110C;
}

.about-stat span {
    color: #2A241A;
    font-size: 14px;
}

.owner-words-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
    align-items: center;
}

.owner-portrait {
    border-radius: 24px;
    overflow: hidden;
    min-height: 420px;
    border: 1px solid rgba(201, 162, 39, 0.28);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.owner-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 420px;
}

.owner-copy h2 {
    color: #f8f5ef;
    margin: 10px 0 18px;
}

.owner-copy p {
    color: rgba(243, 234, 216, 0.82);
    font-size: 17px;
    line-height: 1.8;
    font-style: italic;
}

.owner-copy cite {
    display: block;
    margin-top: 22px;
    font-style: normal;
}

.owner-copy cite strong {
    display: block;
    color: #E3C463;
    font-size: 18px;
}

.owner-copy cite span {
    color: rgba(243, 234, 216, 0.7);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-promise-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

@media (max-width: 900px) {
    .about-intro-grid,
    .owner-words-grid,
    .about-promise-grid {
        grid-template-columns: 1fr;
    }

    .owner-portrait,
    .owner-portrait img {
        min-height: 280px;
    }
}

.service-feature-band {
    padding-top: 0;
}

.service-feature-frame {
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(20, 17, 12, 0.08);
    box-shadow: var(--card-shadow);
}

.service-feature-frame img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

.service-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
    gap: 36px;
    align-items: start;
}

.service-detail-aside {
    position: sticky;
    top: 28px;
}

.service-article-card {
    background: rgba(255, 248, 241, 0.78);
    border: 1px solid rgba(20, 17, 12, 0.08);
    border-radius: 28px;
    padding: 42px 46px 48px;
    box-shadow: var(--card-shadow);
}

.service-detail-body {
    color: #14110C;
    font-size: 16.5px;
    line-height: 1.8;
}

.service-detail-body > *:first-child {
    margin-top: 0;
}

.service-detail-body h1,
.service-detail-body h2,
.service-detail-body h3,
.service-detail-body h4,
.service-detail-body h5,
.service-detail-body h6 {
    font-family: var(--font-serif);
    color: #14110C;
    line-height: 1.3;
    font-weight: 600;
}

.service-detail-body h1 { font-size: 34px; margin: 28px 0 16px; }
.service-detail-body h2 { font-size: 28px; margin: 36px 0 14px; }
.service-detail-body h3 { font-size: 22px; margin: 28px 0 10px; }
.service-detail-body h4 { font-size: 18px; margin: 22px 0 8px; }

.service-detail-body p {
    color: #2A241A;
    margin: 0 0 16px;
}

.service-detail-body p:empty {
    display: none;
}

.service-detail-body a {
    color: #9C7A18;
    text-decoration: underline;
}

.service-detail-body strong,
.service-detail-body b {
    color: #14110C;
    font-weight: 600;
}

.service-detail-body ul,
.service-detail-body ol {
    margin: 0 0 20px;
    padding-left: 1.4rem;
}

.service-detail-body ul {
    list-style: disc;
}

.service-detail-body ol {
    list-style: decimal;
}

.service-detail-body li {
    list-style: inherit !important;
    color: #2A241A;
    margin: 0 0 8px;
    padding-left: 4px;
}

.service-detail-body blockquote {
    margin: 0 0 20px;
    padding: 16px 20px;
    border-left: 3px solid #C9A227;
    background: #F7E8DC;
    color: #2A241A;
    font-style: italic;
}

.service-detail-body img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 12px 0 20px;
}

.service-detail-body figure {
    margin: 0 0 20px;
}

.service-detail-body figcaption {
    font-size: 13px;
    color: #6B5E4E;
    margin-top: 8px;
}

.service-detail-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 20px;
    font-size: 15px;
}

.service-detail-body th,
.service-detail-body td {
    border: 1px solid rgba(20, 17, 12, 0.12);
    padding: 10px 12px;
    text-align: left;
}

.service-detail-body th {
    background: #F3E0D4;
}

.service-detail-body hr {
    border: 0;
    border-top: 1px solid rgba(201, 162, 39, 0.35);
    margin: 28px 0;
}

.service-quote-panel .eyebrow {
    margin-bottom: 8px;
}

.service-detail-hero .sub {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.service-aside-note {
    margin-top: 12px;
    font-size: 13px;
}

.service-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.service-gallery-item {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: var(--card-shadow);
}

.service-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-gallery-item:hover img {
    transform: scale(1.06);
}

.service-video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.service-video-grid.is-single {
    grid-template-columns: minmax(0, 760px);
    justify-content: center;
}

@media (max-width: 980px) {
    .service-detail-layout,
    .service-gallery-grid,
    .service-video-grid {
        grid-template-columns: 1fr;
    }

    .service-article-card {
        padding: 28px 20px 32px;
    }

    .service-detail-aside {
        position: static;
    }

    .service-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {
    .city-slider,
    .gs-slider-track,
    .process-card,
    .vendor-card,
    .adv-card.light-card,
    .city-card,
    .home-blog-card,
    .gallery-item-card,
    .testimonial-card,
    .faq-item,
    .public-panel,
    .about-stat-card,
    .city-card-photo img,
    .home-blog-media img,
    .gallery-img-wrapper img {
        transition: none !important;
        animation: none !important;
        translate: none !important;
    }
}

section.dest-wrap,
.dest-wrap {
    min-height: 0 !important;
    padding: 24px 0 40px !important;
    border: 0 !important;
    background: #EAD4C6 !important;
}

section.plan-page,
.plan-page {
    min-height: 0 !important;
    padding: 40px 0 72px !important;
    border: 0 !important;
    background: #EAD4C6 !important;
}

.dest-intro {
    text-align: center;
    margin: 0 0 16px;
}

.dest-intro h1 {
    margin: 6px auto 10px;
    max-width: 900px;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.12;
    color: #14110C;
}

.dest-intro .sub {
    max-width: 720px;
    margin: 0 auto;
    color: #2A241A;
}

.dest-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px 16px;
    flex-wrap: wrap;
    margin: 0 0 16px;
    padding: 0;
    border: 0;
    text-align: left;
}

.dest-count {
    margin: 0;
    color: #6B5E4E;
    font-size: 13px;
}

.dest-select-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.dest-select-wrap span {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    color: #9C7A18;
    white-space: nowrap;
}

.dest-select-wrap select {
    appearance: none;
    height: 42px;
    min-width: 180px;
    padding: 0 40px 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(201, 162, 39, 0.35);
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239C7A18' d='M1.2 1.2L6 6l4.8-4.8'/%3E%3C/svg%3E") right 14px center / 12px no-repeat,
        #F6E9DC;
    color: #14110C;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.dest-select-wrap select:focus {
    outline: 0;
    border-color: #C9A227;
}

.dest-state {
    scroll-margin-top: 120px;
    margin: 0 0 18px;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    text-align: left;
}

.dest-state[hidden] {
    display: none !important;
}

.dest-state-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 8px;
}

.dest-state-title {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #14110C;
}

.dest-state-head span {
    color: #9C7A18;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dest-city-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.dest-city-card {
    scroll-margin-top: 130px;
    flex: 0 0 calc((100% - 56px) / 5);
    width: calc((100% - 56px) / 5);
    max-width: calc((100% - 56px) / 5);
    display: flex;
    flex-direction: column;
    background: transparent;
    border: 1px solid rgba(201, 162, 39, 0.18);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 18px rgba(20, 17, 12, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.dest-city-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: 0 14px 28px rgba(20, 17, 12, 0.1);
}

.dest-city-media {
    position: relative;
    height: 148px;
    overflow: hidden;
    background: #E8C0AC;
}

.dest-city-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.dest-city-card:hover .dest-city-media img {
    transform: scale(1.06);
}

.dest-city-media .city-card-fallback {
    position: absolute;
    inset: 0;
}

.dest-city-media img + .city-card-fallback {
    display: none;
}

.dest-city-media:not(:has(img)) .city-card-fallback,
.dest-city-media img.is-broken + .city-card-fallback {
    display: flex;
}

.dest-city-body {
    padding: 10px 12px 12px;
    background: #F3E2D4;
}

.dest-city-body h3 {
    margin: 0 0 2px;
    font-size: 16px;
    font-weight: 500;
    color: #14110C;
    line-height: 1.2;
}

.dest-city-body p {
    margin: 0;
    color: #6B5E4E;
    font-size: 12px;
}

.dest-cta-panel {
    margin-top: 8px;
    padding: 28px 24px;
    text-align: center;
    background: #F3E2D4;
    border: 1px solid rgba(201, 162, 39, 0.18);
    border-radius: 18px;
}

.dest-cta-panel h2 {
    margin: 0 0 8px;
    font-size: 28px;
}

.dest-cta-panel p {
    max-width: 620px;
    margin: 0 auto 16px;
    color: #2A241A;
}

@media (max-width: 1100px) {
    .dest-city-card {
        flex-basis: calc((100% - 28px) / 3);
        width: calc((100% - 28px) / 3);
        max-width: calc((100% - 28px) / 3);
    }
}

@media (max-width: 720px) {
    section.dest-wrap,
    .dest-wrap {
        padding: 16px 0 28px !important;
    }

    .dest-intro h1 {
        font-size: 34px;
    }

    .dest-state-title {
        font-size: 22px;
    }

    .dest-city-card {
        flex-basis: calc((100% - 14px) / 2);
        width: calc((100% - 14px) / 2);
        max-width: calc((100% - 14px) / 2);
    }

    .dest-city-media {
        height: 128px;
    }

    .dest-cta-panel {
        padding: 22px 16px;
    }

    .dest-cta-panel h2 {
        font-size: 22px;
    }
}

.plan-convert {
    display: grid;
    grid-template-columns: minmax(340px, 1.05fr) minmax(0, 0.95fr);
    gap: 40px;
    align-items: start;
    margin: 0 0 56px;
}

.plan-hero-copy {
    padding-top: 8px;
}

.plan-hero-copy h1 {
    margin: 10px 0 14px;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.14;
    color: #14110C;
}

.plan-hero-copy .sub {
    margin: 0 0 20px;
    color: #2A241A;
    line-height: 1.55;
}

.plan-points {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
    color: #14110C;
    font-size: 15px;
}

.plan-points li {
    padding-left: 18px;
    position: relative;
}

.plan-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #C9A227;
}

.plan-call-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #14110C;
    font-weight: 600;
    text-decoration: none;
}

.plan-call-link i {
    color: #C9A227;
}

.plan-proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 22px;
}

.plan-proof-grid a {
    display: block;
    height: 168px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.18);
}

.plan-proof-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.plan-form-card {
    scroll-margin-top: 110px;
    padding: 28px 28px 24px;
    background: #FFF8F1;
    color: #14110C;
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 22px;
    text-align: left;
    box-shadow: 0 18px 40px rgba(20, 17, 12, 0.08);
}

.plan-form-card h2 {
    margin: 0 0 8px;
    font-size: 30px;
}

.plan-form-lead {
    margin: 0 0 20px;
    color: #6B5E4E;
    font-size: 14px;
    line-height: 1.5;
}

.plan-form-card .public-form {
    gap: 16px;
}

.plan-form-card .public-form-grid {
    gap: 16px;
}

.plan-form-card .public-form .field input,
.plan-form-card .public-form .field select,
.plan-form-card .public-form .field textarea {
    border-radius: 10px;
    padding: 13px 15px;
}

.plan-form-card .public-form .field textarea {
    min-height: 96px;
}

.plan-form-card .public-form .field input::placeholder,
.plan-form-card .public-form .field textarea::placeholder {
    color: #9A8B78;
    opacity: 1;
}

.plan-honeypot {
    position: absolute;
    left: -9999px;
    height: 0;
    opacity: 0;
}

.plan-form-actions {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 12px;
    margin-top: 4px;
}

.plan-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 12px;
    border-radius: 12px;
    border: 1px solid #25D366;
    background: #25D366;
    color: #083B1A;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-decoration: none;
    text-transform: uppercase;
}

.plan-whatsapp:hover {
    color: #083B1A;
    filter: brightness(0.95);
}

.plan-form-note {
    margin: 12px 0 0;
    font-size: 12px;
    line-height: 1.5;
    color: #6B5E4E;
}

.plan-block {
    margin: 0;
    padding: 44px 0 8px;
    text-align: left;
}

.plan-block + .plan-block {
    padding-top: 52px;
}

.plan-block-head {
    margin: 0 0 22px;
}

.plan-block-head h2 {
    margin: 6px 0 0;
    font-size: 32px;
}

.plan-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.plan-gallery-grid .gallery-item-card {
    padding: 0;
    border-radius: 18px;
    overflow: hidden;
    background: #F3E2D4;
    text-decoration: none;
}

.plan-gallery-grid .gallery-img-wrapper {
    height: 230px;
}

.plan-gallery-grid .gallery-img-wrapper::after {
    display: none;
}

.plan-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.plan-service-chip {
    appearance: none;
    -webkit-appearance: none;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 14px 16px;
    background: #FFF8F1;
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 16px;
    color: #14110C;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.plan-service-chip span {
    line-height: 1.3;
}

.plan-service-chip i {
    color: #C9A227;
    width: 20px;
    text-align: center;
    flex: 0 0 20px;
}

.plan-service-chip.is-picked,
.plan-pick-city.is-picked {
    border-color: #C9A227;
    box-shadow: 0 10px 22px rgba(201, 162, 39, 0.22);
}

button.plan-pick-city {
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
    color: inherit;
    text-align: left;
    cursor: pointer;
    width: 100%;
    padding: 0;
    background: transparent;
}

.plan-form-card .btn-submit {
    background: #C9A227;
    color: #14110C;
    border-color: #9C7A18;
    border-radius: 12px;
}

.plan-form-card .btn-submit:hover {
    background: #9C7A18;
    color: #FFF8F1;
}

.plan-city-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.plan-city-grid .dest-city-card {
    flex: 0 0 calc((100% - 72px) / 5);
    width: calc((100% - 72px) / 5);
    max-width: calc((100% - 72px) / 5);
}

.plan-city-grid .dest-city-media {
    height: 168px;
}

@media (max-width: 980px) {
    .plan-convert {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 28px;
    }

    .plan-hero-copy h1 {
        font-size: 32px;
    }

    .plan-form-actions,
    .plan-service-grid,
    .plan-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .plan-gallery-grid .gallery-img-wrapper {
        height: 180px;
    }

    .plan-city-grid .dest-city-card {
        flex-basis: calc((100% - 36px) / 3);
        width: calc((100% - 36px) / 3);
        max-width: calc((100% - 36px) / 3);
    }
}

@media (max-width: 720px) {
    section.plan-page,
    .plan-page {
        padding: 20px 0 40px !important;
    }

    .plan-form-card {
        padding: 20px 16px 16px;
    }

    .plan-block,
    .plan-block + .plan-block {
        padding-top: 36px;
    }

    .plan-form-actions,
    .plan-service-grid {
        grid-template-columns: 1fr;
    }

    .plan-proof-grid a {
        height: 120px;
    }

    .plan-gallery-grid .gallery-img-wrapper {
        height: 150px;
    }

    .plan-city-grid {
        gap: 14px;
    }

    .plan-city-grid .dest-city-card {
        flex-basis: calc((100% - 14px) / 2);
        width: calc((100% - 14px) / 2);
        max-width: calc((100% - 14px) / 2);
    }
}
