/* ==========================================================================
   Hi Girls — design system
   Palette & mood derived from the logo: cream/beige, warm bronze, soft gold.
   ========================================================================== */

:root {
    --cream: #f7efe6;
    --cream-2: #f0e4d6;
    --sand: #e7d5c1;
    --bronze: #8b5e3c;
    --bronze-light: #a9744f;
    --gold: #c79a5b;
    --charcoal: #3a2f28;
    --muted: #7a6a5d;
    --white: #fffdfb;
    --shadow: 0 14px 40px rgba(139, 94, 60, 0.14);
    --shadow-sm: 0 6px 18px rgba(139, 94, 60, 0.1);
    --radius: 18px;
    --radius-lg: 28px;
    --maxw: 1180px;
    --font-head: "Playfair Display", Georgia, serif;
    --font-script: "Dancing Script", cursive;
    --font-body: "Poppins", "Segoe UI", system-ui, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.coming-soon-active .header,
body.coming-soon-active main,
body.coming-soon-active .sticky-cta,
body.coming-soon-active .footer {
    display: none;
}

.coming-soon {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        radial-gradient(circle at 15% 10%, rgba(255, 253, 251, .65) 0%, transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(199, 154, 91, .22) 0%, transparent 48%),
        linear-gradient(140deg, var(--cream) 0%, var(--cream-2) 55%, var(--sand) 100%);
}

.coming-soon[hidden] {
    display: none;
}

.coming-soon-inner {
    width: min(760px, 100%);
    background: rgba(255, 253, 251, .72);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(139, 94, 60, .14);
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 42px 34px;
    text-align: center;
}

.coming-soon-logo {
    width: 84px;
    height: 84px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-sm);
}

.coming-soon-kicker {
    margin: 0;
    font-family: var(--font-script);
    color: var(--bronze-light);
    font-size: 1.8rem;
    line-height: 1;
}

.coming-soon h1 {
    margin: 10px 0 12px;
    font-size: clamp(2rem, 5.3vw, 3.2rem);
    color: var(--charcoal);
}

.coming-soon-text {
    margin: 0 auto;
    color: var(--muted);
    max-width: 44ch;
}

.coming-soon-countdown {
    margin: 28px 0 18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(86px, 1fr));
    gap: 12px;
}

.count-box {
    background: var(--white);
    border: 1px solid rgba(139, 94, 60, .18);
    border-radius: 16px;
    padding: 14px 10px;
}

.count-value {
    display: block;
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 4vw, 2.3rem);
    line-height: 1;
    color: var(--bronze);
}

.count-label {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
}

.coming-soon-date {
    margin: 0;
    color: var(--bronze-light);
    font-weight: 600;
}

h1,
h2,
h3 {
    font-family: var(--font-head);
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 .4em;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 22px;
}

section {
    padding: 84px 0;
}

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.section-head .eyebrow {
    font-family: var(--font-script);
    font-size: 1.7rem;
    color: var(--bronze-light);
    display: block;
    line-height: 1;
}

.section-head h2 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    color: var(--charcoal);
}

.section-head p {
    color: var(--muted);
    margin: 0;
}

/* Buttons ---------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .95rem;
    padding: 13px 26px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    white-space: nowrap;
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    background: var(--bronze);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--bronze-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    color: var(--bronze);
    border-color: var(--bronze);
}

.btn-outline:hover {
    background: var(--bronze);
    color: var(--white);
}

.btn-ghost {
    background: var(--cream-2);
    color: var(--charcoal);
}

.btn-ghost:hover {
    background: var(--sand);
}

.btn-block {
    width: 100%;
}

/* Header / nav ----------------------------------------------------------- */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247, 239, 230, 0.86);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 94, 60, 0.12);
}

.nav {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 16px;
    height: 72px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
    flex-shrink: 0;
}

.brand img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.brand .brand-name {
    font-family: var(--font-head);
    font-size: 1.35rem;
    color: var(--bronze);
    line-height: 1;
}

.brand .brand-tag {
    font-family: var(--font-script);
    font-size: .95rem;
    color: var(--bronze-light);
}

.nav-links {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    padding: 8px 11px;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 500;
    white-space: nowrap;
    color: var(--charcoal);
    transition: background .18s ease, color .18s ease;
}

.nav-links a:hover {
    background: var(--cream-2);
    color: var(--bronze);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.lang-toggle {
    background: transparent;
    border: 1.5px solid var(--bronze);
    color: var(--bronze);
    border-radius: 999px;
    padding: 7px 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background .18s ease, color .18s ease;
}

.lang-toggle:hover {
    background: var(--bronze);
    color: var(--white);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero ------------------------------------------------------------------- */
.hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(120% 120% at 80% 0%, var(--cream-2) 0%, var(--cream) 55%);
    padding: 96px 0 88px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: center;
}

.hero .eyebrow {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--bronze-light);
    display: block;
}

.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    color: var(--charcoal);
}

.hero h1 .accent {
    color: var(--bronze);
}

.hero .hero-sub {
    font-size: 1.05rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 500;
}

.hero .hero-desc {
    font-size: 1.12rem;
    color: var(--charcoal);
    max-width: 30ch;
    margin: 18px 0 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-visual {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, var(--sand), var(--cream-2));
    box-shadow: var(--shadow);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.hero-visual img {
    width: 78%;
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.hero-badge {
    position: absolute;
    bottom: 22px;
    left: 22px;
    background: var(--white);
    border-radius: 999px;
    padding: 10px 18px;
    font-family: var(--font-script);
    font-size: 1.25rem;
    color: var(--bronze);
    box-shadow: var(--shadow-sm);
}

/* Team ------------------------------------------------------------------- */
.team {
    background: var(--white);
}

.grid-team {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
}

.team-card {
    flex: 0 1 200px;
    max-width: 220px;
    background: var(--cream);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
    display: flex;
    flex-direction: column;
}

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

.team-photo {
    aspect-ratio: 5 / 6;
    overflow: hidden;
    background: var(--cream-2);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .4s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.05);
}

.team-body {
    padding: 18px 18px 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.team-card h3 {
    font-size: 1.12rem;
    margin-bottom: 2px;
}

.team-card .role {
    color: var(--bronze-light);
    font-weight: 600;
    font-size: .82rem;
    margin-bottom: 10px;
}

.team-card .bio {
    color: var(--muted);
    font-size: .86rem;
    margin-bottom: 14px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-top: auto;
}

.tag {
    background: var(--cream-2);
    color: var(--bronze);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: .76rem;
    font-weight: 600;
}

/* Services --------------------------------------------------------------- */
.services {
    background: var(--cream);
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-tile {
    position: relative;
    display: flex;
    gap: 16px;
    min-width: 0;
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease;
}

.service-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.service-tile.featured {
    grid-column: span 2;
    border-color: var(--gold);
    background: linear-gradient(140deg, var(--white), var(--cream));
}

.service-tile-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.7rem;
    background: var(--cream-2);
    box-shadow: var(--shadow-sm);
}

.service-tile-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.service-tile-body h3 {
    font-size: 1.3rem;
    margin: 0 0 6px;
}

.badge-featured {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    margin-bottom: 10px;
    align-self: flex-start;
}

.service-tile .service-desc {
    color: var(--muted);
    margin: 0 0 14px;
    font-size: .95rem;
}

.service-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.chip {
    background: var(--cream);
    color: var(--charcoal);
    border: 1px solid var(--sand);
    border-radius: 999px;
    padding: 5px 12px;
    font-size: .8rem;
    font-weight: 500;
}

.service-tile.featured .chip {
    background: var(--white);
}

.btn-sm {
    padding: 9px 18px;
    font-size: .85rem;
    margin-top: auto;
    align-self: flex-start;
}

/* Pricing ---------------------------------------------------------------- */
.cennik {
    background: var(--white);
}

.price-groups {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 40px;
}

.price-group h3 {
    color: var(--bronze);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-group li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(139, 94, 60, .18);
}

.price-group .price {
    color: var(--bronze);
    font-weight: 700;
    white-space: nowrap;
}

.cennik .note {
    text-align: center;
    color: var(--muted);
    font-size: .88rem;
    margin-top: 32px;
}

/* Blog band -------------------------------------------------------------- */
.blog-band {
    background: var(--cream);
}

.blog-inner {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 32px;
    align-items: center;
    background: linear-gradient(140deg, var(--bronze), var(--bronze-light));
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow);
}

.blog-copy .eyebrow {
    font-family: var(--font-script);
    font-size: 1.6rem;
    color: var(--cream-2);
    display: block;
    line-height: 1;
}

.blog-copy h2 {
    color: var(--white);
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    margin: 4px 0 10px;
}

.blog-copy p {
    color: rgba(255, 253, 251, .9);
    margin: 0 0 22px;
    max-width: 46ch;
}

.blog-copy .btn-primary {
    background: var(--white);
    color: var(--bronze);
}

.blog-copy .btn-primary:hover {
    background: var(--cream-2);
    color: var(--bronze);
}

.blog-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    place-items: center;
}

.blog-visual span {
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    font-size: 2.2rem;
    background: rgba(255, 253, 251, .16);
    border-radius: 20px;
}

/* Booking ---------------------------------------------------------------- */
.booking {
    background: linear-gradient(180deg, var(--cream-2), var(--cream));
}

.booking-wrap {
    max-width: 760px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.booking-tabs {
    display: flex;
    background: var(--cream);
}

.booking-tab {
    flex: 1;
    padding: 16px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .95rem;
    color: var(--muted);
    border-bottom: 3px solid transparent;
    transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.booking-tab.active {
    color: var(--bronze);
    border-bottom-color: var(--bronze);
    background: var(--white);
}

.booking-panel {
    padding: 32px;
}

.booking-panel[hidden] {
    display: none;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field.full {
    grid-column: 1 / -1;
}

.field label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--charcoal);
}

.field input,
.field select,
.field textarea {
    font-family: var(--font-body);
    font-size: .95rem;
    padding: 12px 14px;
    border: 1.5px solid var(--sand);
    border-radius: 12px;
    background: var(--cream);
    color: var(--charcoal);
    transition: border-color .18s ease, box-shadow .18s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--bronze);
    box-shadow: 0 0 0 3px rgba(139, 94, 60, .12);
    background: var(--white);
}

.field textarea {
    resize: vertical;
    min-height: 72px;
}

.form-msg {
    margin: 16px 0 0;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: .92rem;
    font-weight: 500;
}

.form-msg[hidden] {
    display: none;
}

.form-msg.success {
    background: #e8f3ea;
    color: #2f6b3d;
}

.form-msg.error {
    background: #fbeaea;
    color: #a23b3b;
}

/* Staff panel */
.pin-gate {
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
}

.pin-gate p {
    color: var(--muted);
}

.staff-content[hidden],
.pin-gate[hidden] {
    display: none;
}

.staff-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.staff-toolbar h4 {
    margin: 0;
    font-family: var(--font-head);
    font-size: 1.15rem;
}

.booking-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    background: var(--cream);
    border-radius: 14px;
    padding: 14px 16px;
}

.booking-item .bi-main {
    font-weight: 600;
}

.booking-item .bi-sub {
    font-size: .85rem;
    color: var(--muted);
}

.booking-item .bi-source {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--bronze-light);
    font-weight: 700;
}

.link-btn {
    background: none;
    border: none;
    color: #a23b3b;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: .88rem;
}

.link-btn:hover {
    text-decoration: underline;
}

.staff-divider {
    border: none;
    border-top: 1px dashed rgba(139, 94, 60, .25);
    margin: 24px 0;
}

/* Contact / footer ------------------------------------------------------- */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-info h3 {
    color: var(--bronze);
    font-size: 1.2rem;
    margin-top: 24px;
}

.contact-info h3:first-child {
    margin-top: 0;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px dashed rgba(139, 94, 60, .16);
}

.hours-list .closed {
    color: var(--muted);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.contact-socials a {
    background: var(--cream-2);
    color: var(--bronze);
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    transition: background .18s ease;
}

.contact-socials a:hover {
    background: var(--sand);
}

.footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 34px 0;
}

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

.footer .brand-name {
    font-family: var(--font-head);
    font-size: 1.3rem;
    color: var(--cream);
}

.footer .brand-tag {
    font-family: var(--font-script);
    color: var(--gold);
}

.footer small {
    color: rgba(247, 239, 230, .7);
}

/* Reveal-on-scroll animation (hidden only when JS is available to un-hide it) */
.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.js .reveal.visible {
    opacity: 1;
    transform: none;
}

/* Responsive ------------------------------------------------------------- */
@media (max-width: 1024px) {
    .grid-team {
        max-width: 720px;
        margin: 0 auto;
    }

    .services-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-tile.featured {
        grid-column: span 2;
    }
}

@media (max-width: 1200px) {
    .nav-links {
        position: fixed;
        inset: 72px 0 auto 0;
        flex-direction: column;
        align-items: stretch;
        background: var(--cream);
        padding: 12px 16px 20px;
        gap: 2px;
        box-shadow: var(--shadow);
        transform: translateY(-140%);
        transition: transform .28s ease;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }

    .nav-links.open {
        transform: translateY(0);
    }

    .nav-links a {
        padding: 12px 14px;
        border-radius: 12px;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 760px) {
    section {
        padding: 64px 0;
    }

    .hero {
        padding: 60px 0;
    }

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

    .hero-visual {
        max-width: 360px;
        margin: 0 auto;
    }

    .services-showcase,
    .price-groups,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-tile.featured {
        grid-column: span 1;
    }

    .blog-inner {
        grid-template-columns: 1fr;
        padding: 32px;
    }

    .brand .brand-tag {
        display: none;
    }
}

@media (max-width: 520px) {

    .team-card {
        flex: 0 1 150px;
    }

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

    .booking-panel {
        padding: 22px 18px;
    }

    .footer .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .coming-soon-inner {
        padding: 34px 20px 28px;
        border-radius: 22px;
    }

    .coming-soon-countdown {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto;
    }

    .js .reveal {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================================
   Upgrade layer — social proof, trust, icons, sticky CTA, richer footer
   ========================================================================== */

/* Inline SVG icons + stars */
.ico {
    width: 24px;
    height: 24px;
}

.stars {
    display: inline-flex;
    gap: 2px;
    color: var(--gold);
    line-height: 0;
}

.stars svg {
    width: 18px;
    height: 18px;
}

/* Hero social proof */
.hero-proof {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.hero-proof .stars svg {
    width: 16px;
    height: 16px;
}

.hero-proof-text {
    font-size: .9rem;
    color: var(--muted);
    font-weight: 500;
}

.hero-float {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 253, 251, .92);
    backdrop-filter: blur(6px);
    border-radius: 16px;
    padding: 12px 14px;
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: 3px;
    text-align: left;
    min-width: 118px;
}

.hero-float .stars svg {
    width: 14px;
    height: 14px;
}

.hero-float strong {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--charcoal);
    line-height: 1;
}

.hero-float strong span {
    font-size: .85rem;
    color: var(--muted);
}

.hero-float small {
    font-size: .72rem;
    color: var(--muted);
}

/* Trust / stats bar */
.stats {
    padding: 0;
    position: relative;
    z-index: 5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: linear-gradient(135deg, var(--bronze), var(--bronze-light));
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    margin-top: -54px;
    box-shadow: var(--shadow);
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-head);
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    line-height: 1;
    color: var(--white);
}

.stat-label {
    display: block;
    margin-top: 6px;
    font-size: .82rem;
    color: rgba(255, 253, 251, .85);
}

/* Why-us values */
.values {
    background: var(--cream);
}

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

.value-card {
    background: var(--white);
    border: 1px solid rgba(139, 94, 60, .1);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
}

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

.value-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--cream-2);
    margin-bottom: 16px;
}

.value-icon .ico {
    width: 26px;
    height: 26px;
    color: var(--bronze);
}

.value-card h3 {
    font-size: 1.12rem;
    margin-bottom: 6px;
}

.value-card p {
    color: var(--muted);
    font-size: .92rem;
    margin: 0;
}

/* Service tiles — SVG icons + price/footer row */
.service-tile-icon .ico {
    width: 28px;
    height: 28px;
    color: var(--bronze);
}

.service-foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.service-foot .btn-sm {
    margin-top: 0;
    align-self: auto;
}

.service-from {
    font-weight: 700;
    color: var(--bronze);
    font-size: .9rem;
    white-space: nowrap;
}

/* Pricing icon chip */
.price-group h3 .price-ico {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: var(--cream-2);
}

.price-group h3 .price-ico .ico {
    width: 18px;
    height: 18px;
    color: var(--bronze);
}

/* Reviews / testimonials */
.reviews {
    background: linear-gradient(180deg, var(--cream), var(--white));
}

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: -16px 0 34px;
}

.reviews-summary .stars svg {
    width: 22px;
    height: 22px;
}

.reviews-summary strong {
    font-family: var(--font-head);
    font-size: 1.6rem;
    color: var(--charcoal);
}

.reviews-summary span {
    color: var(--muted);
    font-size: .9rem;
}

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

.review-card {
    background: var(--white);
    border: 1px solid rgba(139, 94, 60, .1);
    border-radius: var(--radius);
    padding: 26px 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
}

.review-card .stars svg {
    width: 18px;
    height: 18px;
}

.review-card blockquote {
    margin: 0;
    color: var(--charcoal);
    font-size: .98rem;
    line-height: 1.6;
}

.review-card figcaption {
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

.review-name {
    font-weight: 700;
    color: var(--charcoal);
}

.review-service {
    color: var(--bronze-light);
    font-size: .82rem;
    font-weight: 600;
}

/* Blog band — real photo grid instead of emoji */
.blog-visual {
    align-items: stretch;
    justify-items: stretch;
}

.blog-visual img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

/* Booking trust line */
.booking-trust {
    text-align: center;
    color: var(--bronze);
    font-weight: 600;
    font-size: .9rem;
    margin: -28px 0 28px;
}

/* Sticky mobile booking CTA */
.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    background: rgba(255, 253, 251, .95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(139, 94, 60, .15);
    box-shadow: 0 -8px 24px rgba(139, 94, 60, .12);
    transform: translateY(120%);
    transition: transform .3s ease;
    padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
}

.sticky-cta.visible {
    transform: none;
}

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

.sticky-cta-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sticky-cta-text .stars svg {
    width: 14px;
    height: 14px;
}

.sticky-cta-text span {
    font-size: .82rem;
    color: var(--muted);
    font-weight: 500;
}

.sticky-cta .btn {
    padding: 11px 22px;
}

@media (min-width: 761px) {
    .sticky-cta {
        display: none;
    }
}

/* Richer footer */
.footer {
    padding: 56px 0 28px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1.2fr 1fr;
    gap: 32px;
}

.footer-brand .brand-name {
    font-family: var(--font-head);
    font-size: 1.35rem;
    color: var(--cream);
    display: block;
}

.footer-brand .brand-tag {
    font-family: var(--font-script);
    color: var(--gold);
    font-size: 1.05rem;
}

.footer-tagline {
    color: rgba(247, 239, 230, .7);
    font-size: .9rem;
    margin: 12px 0 16px;
    max-width: 34ch;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    background: rgba(255, 253, 251, .1);
    color: var(--cream);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 600;
    transition: background .18s ease;
}

.footer-socials a:hover {
    background: rgba(255, 253, 251, .2);
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--cream);
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-col a,
.footer-col li {
    color: rgba(247, 239, 230, .72);
    font-size: .9rem;
}

.footer-col a {
    transition: color .18s ease;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.footer-hours .closed {
    color: rgba(247, 239, 230, .45);
}

.footer-bottom {
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid rgba(247, 239, 230, .12);
    text-align: center;
}

.footer-bottom small {
    color: rgba(247, 239, 230, .6);
}

/* Responsive — new components */
@media (max-width: 960px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 16px;
        margin-top: -42px;
    }

    .hero-float {
        top: 12px;
        right: 12px;
    }
}

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

    .hero-float {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    /* Declutter the header on phones — booking stays on the hero + sticky bar. */
    .nav-actions .btn-primary {
        display: none;
    }
}