/* Theme */
:root {
    /* Brand */
    --pink: #ff77a8;

    /* Neutrals */
    --ink: #2b2627;
    /* headings, icons */
    --muted: #5a4f52;
    /* body text */
    --bg: #fff8fb;
    /* page */
    --bg-soft: #f6f1f3;
    /* alt sections */
    --border: #eadfe3;

    /* Red spectrum accents */
    --wine: #540c1b;
    /* primary button bg (white text) */
    --burgundy: #7e1631;
    /* secondary button/hovers */
    --crimson: #c2185b;
    /* links, emphasis */
    --coral: #ff5a7a;
    /* tags, subtle highlights */
    --rose: #ff8db6;
    /* light accent */
    --blush: #ffe0ec;
    /* background wash */

    --shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0
}

body {
    font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    font-display: swap;
    color: var(--muted);
    background: var(--bg);
    line-height: 1.65
}

.container {
    width: min(1120px, 92%);
    margin-inline: auto
}

main>section:nth-of-type(odd) {
    background-color: var(--bg);
    border: 1px solid var(--border);
}

main>section:nth-of-type(even) {
    background-color: var(--bg-soft);
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 60;
    background: var(--pink);
    color: #fff;
    box-shadow: 0 10px 48px rgba(0, 0, 0, 0.32);
}

.bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .85rem 0
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo .logo-card {
    display: inline-flex;
    align-items: center;
    background: #fff;
    padding: .35rem .55rem;
    border: 1px solid #eadfe3;
    /* warm divider from your palette */
    border-radius: 12px;
    /* match your card radius */
    box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
    /* pink keyline to “bind” the white to the header */
    box-shadow:
        inset 0 0 0 2px var(--pink),
        0 8px 20px rgba(0, 0, 0, .06);
}

.logo img {
    border-radius: 16px;
    height: 80px;
    display: block;
}

.logo-card {
    transition: transform .18s ease, box-shadow .18s ease;
}

.logo-card:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
}

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

.nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 1rem;
    font-weight: 600;
    opacity: .95;
    font-size: 18px;
}

.nav a:hover {
    opacity: 1;
    text-decoration: underline
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    border-radius: 2px
}

.section {
    padding: 3rem 0
}

.grid2 {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 2rem;
    align-items: center
}

.grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    /* slightly looser than .grid4 */
    align-items: start;
    /* typical for cards/content */
}

.grid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem
}

.hero .hero-copy h1 {
    color: var(--ink);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(28px, 4vw, 44px);
    margin: 0
}

.hero .sub {
    color: var(--ink);
    margin: .5rem 0 .2rem
}

.btn-row {
    display: flex;
    gap: .75rem;
    margin-top: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .7rem 1rem;
    border-radius: .6rem;
    font-weight: 700;
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--muted);
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .02);
    cursor: pointer;
}

.btn.primary {
    background: var(--pink);
    color: #fff;
}

.btn.primary:hover {
    filter: brightness(1.05)
}

.btn.outline {
    background: #fff
}

.btn.soft {
    background: var(--pink);
    color: #fff;
    border-color: transparent
}

.btn.ghost {
    background: transparent
}

.btn:hover {
    transform: translateY(-1px)
}

.photo {
    position: relative;
    border-radius: .75rem;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow)
}

.photo img {
    display: block;
    width: 100%;
    height: auto
}

.badge {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    background: var(--pink);
    color: #fff;
    padding: .75rem;
    border-radius: .5rem;
    box-shadow: var(--shadow)
}

.badge ul {
    margin: .3rem 0 0 .9rem;
    padding: 0
}

section.experience-quote.section {
    width: 100%;
    padding: 4rem 0;
}

section.experience-quote.section .container {
    max-width: none;
    width: 100%
}

section.experience-quote.section .container blockquote {
    margin: 0 auto;
    max-width: 900px;
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(---ink);
    text-align: center;
    padding: 2rem 1rem;
    background: #fff;
    border-left: 8px solid var(--pink);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.experience-quote.section .container blockquote span {
    font-weight: bold;
    color: var(--pink);
}

.reviews-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem
}

.reviews-head h3 {
    font-size: 1.6rem;
    margin: 0
}

.rating .stars {
    letter-spacing: .2rem;
    color: var(--pink)
}

.rating .mute {
    color: var(--muted);
    margin-left: .5rem
}

.cards .card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: .75rem;
    padding: 1rem;
    box-shadow: var(--shadow)
}

.cards .card h4 {
    flex: 0 0 auto;
    margin: .2rem 0 .4rem
}

.cards .card p {
    flex: 1 1 auto;
}

.cards .card .by {
    flex: 0 0 auto;
    color: var(--muted);
    margin-top: .6rem;
    font-weight: 600
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem
}

.contact-line a {
    color: #111;
    text-decoration: none;
    border-bottom: 1px dashed #111
}

.contact-line a:hover {
    opacity: .8
}

.qa {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: .75rem;
    padding: 1rem;
    box-shadow: var(--shadow);
    min-height: 100%;
}

.qa h4 {
    margin: .2rem 0 .4rem
}

.banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: .9rem;
    padding: 1rem;
    box-shadow: var(--shadow)
}

/* Match your grid spacing and column count */
.carousel {
    --gap: 1.25rem;
    /* same gutter as your .grid3 */
    --perView: 3;
    /* desktop: 3 columns */
    position: relative;
    width: 100%;
}

.carousel__viewport {
    overflow: hidden;
    position: relative;
}

.carousel__track {
    display: flex;
    gap: var(--gap);
    transform: translateX(var(--tx, 0px));
    transition: transform .35s ease;
    will-change: transform;
}

/* Make each slide exactly one grid column wide:
   3 columns + 2 gaps = 100% (then 2/1 at breakpoints) */
.carousel__slide {
    flex: 0 0 auto;
    width: calc((100% - (var(--gap) * (var(--perView) - 1))) / var(--perView));
}

/* Thumbnail card (reuse your existing .shot styles if you already have them) */
.carousel .shot {
    display: block;
    position: relative;
    border: 1px solid var(--border, #eadfe3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
    aspect-ratio: 3 / 4;
    /* consistent tiles */
}

.carousel .shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Strong, high-contrast arrows */
.carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: #fff;
    /* white button */
    color: #111;
    /* arrow colour */
    border: 2px solid #111;
    /* strong black border */
    box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
    display: grid;
    place-items: center;
    font-size: 26px;
    line-height: 1;
    /* for the ‹ and › glyphs */
    cursor: pointer;
}

.carousel__btn--prev {
    left: .5rem;
}

.carousel__btn--next {
    right: .5rem;
}

.carousel__btn:hover {
    transform: translateY(-50%) scale(1.04);
}

.carousel__btn:active {
    transform: translateY(-50%) scale(0.98);
}

.carousel__btn[disabled] {
    opacity: .35;
    cursor: not-allowed;
}

/* Clear, accessible focus ring */
.carousel__btn:focus-visible {
    outline: 3px solid #000;
    outline-offset: 2px;
}

/* Lightbox overlay */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .9);
    padding: 1rem;
}

.lightbox.open {
    display: flex;
}

.lightbox__img {
    max-width: min(1200px, 92vw);
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
    user-select: none;
}

.lightbox__close {
    position: absolute;
    top: .5rem;
    right: .5rem;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: #fff;
    color: #111;
    border: 2px solid #111;
    border-radius: 999px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
}

.lightbox__nav {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.lightbox__btn {
    pointer-events: auto;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    background: #fff;
    color: #111;
    border: 2px solid #111;
    border-radius: 999px;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
}

.lightbox__btn:focus-visible,
.lightbox__close:focus-visible {
    outline: 3px solid #000;
    outline-offset: 2px;
}

/* Fewer columns on narrower screens (same logic as your grid) */
@media (max-width: 1000px) {
    .carousel {
        --perView: 2;
    }
}

@media (max-width: 720px) {
    .carousel {
        --perView: 1;
    }
}

/* Hide buttons automatically when there's only one page */
.carousel:not(.is-multi) .carousel__btn {
    display: none;
}

.site-footer {
    padding: 1rem 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center
}

.footer-inner .center {
    text-align: center
}

.footer-inner .right {
    text-align: right
}

.footer-inner a {
    color: #111;
    text-decoration: none
}

.footer-inner a:hover {
    text-decoration: underline
}

.table-wrap {
    background: #fff;
    border: 1px solid var(--border, #eadfe3);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
    overflow: hidden;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
    line-height: 1.5;
    background: #fff;
    /* ensure a flat white base */
}

.price-table thead th {
    text-align: left;
    font-weight: 700;
    color: var(--ink, #2b2627);
    background: var(--blush);
    padding: .75rem .95rem;
    border-bottom: 1px solid var(--border, #eadfe3);
}

.price-table td {
    padding: .7rem .95rem;
    border-bottom: 1px solid var(--border, #eadfe3);
    color: var(--ink, #2b2627);
}

.price-table tr:last-child td {
    border-bottom: 0;
}

.price-table .col-price {
    text-align: right;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1, "lnum" 1;
}

/* Subhead rows keep the accent */
.price-table .subhead td {
    font-weight: 700;
    color: var(--ink);
    background: var(--bg-soft);
    border-top: 1px solid var(--border, #eadfe3);
    border-bottom: 1px solid var(--border, #eadfe3);
    text-align: center;
}

/* Optional: very subtle row hover (only if you add .hover to the table) */
.price-table.hover tbody tr:hover {
    background: rgba(0, 0, 0, .02);
}

/* Compact modifier if you need it */
.price-table.compact td,
.price-table.compact thead th {
    padding: .55rem .7rem;
}

.alert {
    padding: .8rem 1rem;
    border-radius: .6rem;
    margin-bottom: 1rem;
    border: 1px solid #eadfe3
}

.alert.ok {
    background: #f0fff4;
    border-color: #c6f6d5
}

.alert.err {
    background: #fff5f5;
    border-color: #fed7d7
}

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

.contact-form label {
    display: grid;
    gap: .35rem;
    font-weight: 600
}

.contact-form input,
.contact-form textarea {
    padding: .7rem;
    border-radius: .6rem;
    border: 1px solid #eadfe3;
    font: inherit
}

.hp {
    position: absolute;
    left: -9999px;
    visibility: hidden
}

@media (max-width: 720px) {

    .price-table td,
    .price-table thead th {
        padding: .65rem .75rem;
    }
}

@media (max-width: 1000px) {
    .grid2 {
        grid-template-columns: 1fr
    }

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

    .grid4 {
        grid-template-columns: 1fr 1fr
    }

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

@media (max-width: 930px) {
    .nav-toggle {
        display: block
    }

    .nav {
        display: none;
        position: absolute;
        right: 4%;
        top: 76px;
        background: #fff;
        color: #111;
        border: 1px solid var(--border);
        border-radius: .6rem;
        box-shadow: var(--shadow)
    }

    .nav.open {
        display: flex;
        flex-direction: column
    }

    .nav a {
        color: #111;
        padding: .6rem 1rem;
        margin: 0
    }
}

@media (max-width: 720px) {
    .grid3 {
        grid-template-columns: 1fr;
    }

    .grid4 {
        grid-template-columns: 1fr
    }

    .btn-row {
        flex-direction: column;
        align-items: stretch;
        /* let children fill width */
    }

    .btn-row .btn {
        width: 100%;
    }
}