/* MediaSpis frontend — brand stylesheet */
:root {
    --brand: #99c5d6;
    --brand-dark: #7eb0c4;
    --ink: #3a3a3a;
    --muted: #8a8a8a;
    --footer: #f6f3ef;
    --hero-btn: #5f6f73;
    --font-sans: "Roboto", ui-sans-serif, system-ui, sans-serif;
    --font-serif: "Roboto", ui-sans-serif, system-ui, sans-serif;
    --container: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--ink);
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    margin: 0;
    letter-spacing: -0.01em;
}

p {
    margin: 0;
}

.site-container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 1.25rem;
}

@media (min-width: 1024px) {
    .site-container {
        padding-inline: 2rem;
    }
}

/* Header */
#site-header {
    position: fixed;
    inset-inline: 0;
    top: 0;
    z-index: 50;
    transition: background .3s ease, color .3s ease, box-shadow .3s ease;
}

#site-header.is-transparent {
    background: transparent;
    color: #fff;
}

#site-header.is-solid {
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(8px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    height: 78px;
}

@media (min-width: 1024px) {
    .header-inner {
        height: 92px;
        align-items: stretch;
    }

    .brand-logo {
        display: inline-flex;
        align-items: center;
        align-self: center;
    }

    #site-nav {
        align-items: stretch;
    }

    #site-nav > .nav-link {
        display: inline-flex;
        align-items: center;
    }
}

.brand-logo img {
    height: 40px;
    width: auto;
}

@media (min-width: 1024px) {
    .brand-logo img {
        height: 48px;
    }
}

.brand-logo .logo-light { display: none; }
.brand-logo .logo-dark { display: block; }
#site-header.is-transparent .logo-light { display: block; }
#site-header.is-transparent .logo-dark { display: none; }

#nav-toggle {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

#nav-toggle .burger {
    display: flex;
    width: 24px;
    flex-direction: column;
    gap: 6px;
}

#nav-toggle .burger span {
    display: block;
    height: 2px;
    width: 100%;
    background: currentColor;
    transition: .3s ease;
}

@media (min-width: 1024px) {
    #nav-toggle { display: none; }
}

#site-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    background: #fff;
    color: var(--ink);
}

#site-nav.is-open {
    display: flex;
}

@media (min-width: 1024px) {
    #site-nav {
        display: flex;
        position: static;
        inset: auto;
        flex-direction: row;
        align-items: stretch;
        background: transparent;
        color: inherit;
        gap: 1.75rem;
    }

    #site-nav > .nav-link {
        display: inline-flex;
        align-items: center;
    }
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color .3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.nav-link:hover {
    color: var(--brand);
}

.nav-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

/* Same type as .nav-link — do not use font:inherit (overrides size on <button>) */
.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.nav-caret {
    width: 10px;
    height: 7px;
    transition: transform .3s ease;
}

.nav-item.is-open .nav-caret {
    transform: rotate(180deg);
}

.nav-dropdown {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
}

.nav-item.is-open .nav-dropdown,
.nav-dropdown:not([hidden]) {
    display: flex;
}

.nav-dropdown a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: none;
    color: inherit;
    transition: color .3s ease;
    text-align: center;
}

.nav-dropdown a:hover {
    color: var(--brand);
}

@media (min-width: 1024px) {
    .nav-item {
        flex-direction: row;
        align-items: stretch;
        gap: 0;
        height: 100%;
        align-self: stretch;
    }

    .nav-dropdown-toggle {
        height: 100%;
        padding: 0 0.15rem;
    }

    .nav-dropdown {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        min-width: 280px;
        padding: 0.85rem 1.15rem 1rem;
        margin-top: 0;
        border-radius: 1rem;
        background: #fff;
        color: var(--ink);
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
        align-items: flex-start;
        gap: 0.65rem;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .2s ease, visibility .2s ease;
        display: flex;
        z-index: 60;
    }

    /* Invisible hover bridge so the menu doesn't close while moving to it */
    .nav-dropdown::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: -1.25rem;
        height: 1.25rem;
    }

    .nav-item.is-open .nav-dropdown,
    .nav-item:hover .nav-dropdown,
    .nav-item:focus-within .nav-dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-dropdown[hidden] {
        display: flex;
    }

    .nav-dropdown a {
        width: 100%;
        text-align: left;
        padding: 0.45rem 0.35rem;
        border-radius: 0.5rem;
        transition: color .3s ease, background .3s ease;
    }

    .nav-dropdown a:hover {
        background: rgba(153, 197, 214, 0.16);
    }
}

.cart-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    margin-left: 8px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-size: 10px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 0;
    cursor: pointer;
    transition: all .3s ease;
}

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

.btn-hero:hover {
    background: #111;
}

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

.btn-brand:hover {
    background: var(--brand-dark);
}

/* Hero */
#hero {
    position: relative;
    height: 100svh;
    min-height: 640px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .7s ease;
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(20, 20, 20, 0.28), rgba(20, 20, 20, 0.35));
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-title {
    max-width: 720px;
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    line-height: 1.1;
    font-weight: 500;
    white-space: pre-line;
}

.hero-content .btn {
    margin-top: 2.5rem;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 2rem;
    z-index: 5;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.hero-dot {
    width: 10px;
    height: 10px;
    border: 1px solid #fff;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background .3s ease;
}

.hero-dot.is-active {
    background: #fff;
}

/* Intro */
.section-intro {
    padding: 4.5rem 0;
}

@media (min-width: 1024px) {
    .section-intro {
        padding: 6.5rem 0;
    }
}

.intro-split {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 960px) {
    .intro-split {
        grid-template-columns: 1fr 1.05fr;
        gap: 4rem;
    }
}

.intro-split-content {
    text-align: left;
}

.section-intro .flower {
    display: block;
    margin: 0 0 1.5rem;
    height: 36px;
    width: auto;
    opacity: 0.85;
}

.intro-split-content h2 {
    margin-bottom: 1.25rem;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    line-height: 1.2;
    color: var(--ink);
}

.intro-split-content p {
    max-width: none;
    margin: 0 0 1.75rem;
    font-size: 1.02rem;
    line-height: 1.9;
    color: var(--muted);
}

.intro-tabs .intro-split-content p,
.intro-tab-panel p {
    margin: 0 0 1.1rem;
}

.intro-tab-panel p:last-child {
    margin-bottom: 0;
}

.intro-tabs {
    margin-bottom: 1.75rem;
}

.intro-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.intro-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    background: linear-gradient(180deg, #fff 0%, #f7fafc 100%);
    color: var(--muted);
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.intro-tab:hover {
    color: var(--ink);
    border-color: rgba(153, 197, 214, 0.55);
    background: linear-gradient(180deg, #fff 0%, rgba(153, 197, 214, 0.18) 100%);
}

.intro-tab.is-active {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #7eb6c9 0%, #99c5d6 55%, #b7d7e3 100%);
    box-shadow: 0 10px 24px rgba(153, 197, 214, 0.35);
}

.intro-tabs-panels {
    min-height: 11rem;
}

.intro-tab-panel {
    display: none;
    animation: introTabFade 0.35s ease;
}

.intro-tab-panel.is-active {
    display: block;
}

.intro-tab-panel h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.65rem, 2.6vw, 2.2rem);
}

@keyframes introTabFade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro-split-media {
    overflow: hidden;
    border-radius: 1.25rem;
    background: #ece7e1;
    aspect-ratio: 4 / 3;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.intro-split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.intro-split-media:hover img {
    transform: scale(1.03);
}

.section-intro strong {
    color: var(--ink);
    font-weight: 600;
}

.section-offer {
    background: linear-gradient(180deg, #f7fafc 0%, #fff 55%, #f8fafb 100%);
}

.section-offer .intro-split {
    align-items: center;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #7eb6c9 0%, #99c5d6 100%);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-offer .intro-split-content h2 {
    margin-bottom: 0.85rem;
}

.offer-lead {
    margin-bottom: 1rem !important;
    font-size: 1.08rem !important;
    color: var(--ink) !important;
}

.section-offer .intro-split-content p {
    margin-bottom: 1.1rem;
}

.offer-price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem 1.75rem;
    margin-top: 1.75rem;
}

.offer-price {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.offer-price-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.offer-price-value {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.section-offer .intro-split-media {
    box-shadow: 0 18px 44px rgba(126, 182, 201, 0.22);
}

/* Services */
/* Home category banners — modern cards */
.services-banners {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
    padding-bottom: 1rem;
}

@media (min-width: 640px) {
    .services-banners {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .services-banners {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.service-banner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 1.25rem;
    background: #1b1b18;
    min-height: 420px;
    transition: transform .35s ease, box-shadow .35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

@media (min-width: 1024px) {
    .service-banner {
        min-height: 480px;
    }
}

.service-banner:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.service-banner-media {
    position: absolute;
    inset: 0;
}

.service-banner-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.service-banner:hover .service-banner-media img {
    transform: scale(1.06);
}

.service-banner-content {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    padding: 1.75rem 1.5rem 1.6rem;
    color: #fff;
    background: linear-gradient(
        to top,
        rgba(20, 24, 28, 0.92) 0%,
        rgba(20, 24, 28, 0.55) 55%,
        rgba(20, 24, 28, 0) 100%
    );
}

.service-banner-content h3 {
    margin: 0 0 0.65rem;
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    color: #fff;
}

.service-banner-content p {
    margin: 0 0 1rem;
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
}

.service-banner-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand);
    transition: gap .3s ease, color .3s ease;
}

.service-banner-link::after {
    content: "→";
    font-size: 13px;
    transition: transform .3s ease;
}

.service-banner:hover .service-banner-link {
    color: #fff;
}

.service-banner:hover .service-banner-link::after {
    transform: translateX(4px);
}

/* Legacy grid kept for safety if reused elsewhere */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.22);
    transition: background .3s ease;
}

.service-card:hover::before {
    background: rgba(0, 0, 0, 0.32);
}

.service-card-box {
    position: relative;
    z-index: 1;
    width: min(100% - 2rem, 260px);
    background: #fff;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.service-card-box h3 {
    margin-bottom: 1rem;
    font-size: 1.35rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.service-card-box p {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--muted);
}

.service-card-box a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand);
    transition: color .3s ease;
}

.service-card-box a:hover {
    color: var(--brand-dark);
}

/* CTA */
.section-cta {
    padding: 5rem 0;
    text-align: center;
}

@media (min-width: 1024px) {
    .section-cta {
        padding: 7rem 0;
    }
}

.section-cta h2 {
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.section-cta p {
    max-width: 680px;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--muted);
}

/* Newsletter */
.section-newsletter {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 4rem 0;
    text-align: center;
    background: #fafbfc;
}

@media (min-width: 1024px) {
    .section-newsletter {
        padding: 5rem 0;
    }
}

.section-newsletter h2 {
    margin-bottom: 0.85rem;
    font-size: clamp(1.65rem, 2.6vw, 2.15rem);
    font-weight: 500;
}

.newsletter-lead {
    max-width: 560px;
    margin: 0 auto 1.75rem;
    font-size: 1rem;
    line-height: 1.85;
    color: var(--muted);
}

.home-services-head {
    padding: 4.5rem 0 2.5rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .home-services-head {
        padding: 6rem 0 3rem;
    }
}

.home-services {
    padding-bottom: 4rem;
}

@media (min-width: 1024px) {
    .home-services {
        padding-bottom: 5.5rem;
    }
}

.section-label {
    display: inline-block;
    margin-bottom: 0.85rem;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand);
}

.home-services-head h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.9rem, 3.5vw, 2.75rem);
    color: var(--ink);
}

.home-services-head p {
    max-width: 640px;
    margin-inline: auto;
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--muted);
}

.section-cta .section-label {
    display: block;
    margin-bottom: 0.85rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 640px;
    margin-inline: auto;
}

@media (min-width: 640px) {
    .newsletter-form {
        flex-direction: row;
    }
}

.newsletter-form input {
    flex: 1;
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 14px 20px;
    font: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color .3s ease;
}

.newsletter-form input:focus {
    border-color: var(--brand);
}

.newsletter-form .btn {
    min-width: 160px;
}

/* Footer */
.site-footer {
    background: var(--footer);
}

@media (min-width: 1024px) {
    .site-footer {
        background-color: var(--footer);
        background-image:
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.58) 0%,
                rgba(246, 243, 239, 0.42) 42%,
                rgba(246, 243, 239, 0.62) 100%
            ),
            url('../images/footer/footer-bg.png');
        background-size: cover;
        background-position: center bottom;
        background-repeat: no-repeat;
    }

    .site-footer .footer-brand p,
    .site-footer .footer-links a,
    .site-footer .footer-contact,
    .site-footer .footer-bottom {
        color: #5a5a5a;
    }

    .site-footer .footer-col h3,
    .site-footer .socials a {
        color: var(--ink);
    }

    .site-footer .footer-bottom {
        border-top-color: rgba(0, 0, 0, 0.08);
        background: transparent;
    }
}

.site-footer .site-container {
    padding-inline: 1.5rem;
}

@media (min-width: 640px) {
    .site-footer .site-container {
        padding-inline: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .site-footer .site-container {
        padding-inline: 2rem;
    }
}

.footer-grid {
    display: grid;
    gap: 1.75rem;
    padding: 3rem 0 2.5rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.45fr repeat(3, minmax(0, 1fr));
        gap: 2.5rem;
        padding: 5rem 0;
    }
}

@media (min-width: 1200px) {
    .footer-grid {
        gap: 3.25rem;
    }
}

.footer-brand img {
    height: 48px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    max-width: 360px;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--muted);
}

.footer-brand p + p {
    margin-top: 0.85rem;
}

.footer-toggle {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 0;
    padding: 0.95rem 0;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

.footer-col--accordion:last-child .footer-toggle {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-toggle-caret {
    width: 14px;
    height: 10px;
    flex-shrink: 0;
    transition: transform 0.3s ease-in-out;
}

.footer-toggle[aria-expanded="true"] .footer-toggle-caret {
    transform: rotate(180deg);
}

.footer-panel {
    padding: 0 0 1.15rem;
}

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

@media (min-width: 1024px) {
    .footer-toggle {
        display: block;
        padding: 0;
        border: 0;
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
        cursor: default;
        pointer-events: none;
    }

    .footer-col--accordion:last-child .footer-toggle {
        border-bottom: 0;
    }

    .footer-toggle-caret {
        display: none;
    }

    .footer-panel,
    .footer-panel[hidden] {
        display: block;
        padding: 0;
    }
}

.footer-col h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color .3s ease;
}

.footer-links a:hover {
    color: var(--brand);
}

.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--muted);
}

.footer-contact a:hover {
    color: var(--brand);
}

.socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.socials a {
    color: var(--ink);
    transition: color .3s ease;
}

.socials a:hover {
    color: var(--brand);
}

.socials svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1.25rem 0;
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    color: var(--muted);
}

.footer-credits {
    background: #0b0b0b;
    padding: 0.85rem 0;
}

.footer-credit-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem 1.25rem;
    transition: opacity 0.3s ease-in-out;
}

.footer-credit-link:hover {
    opacity: 0.88;
}

.footer-credit-keyword {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #d4b56a;
}

.footer-credit-logo {
    height: 34px;
    width: auto;
    max-width: min(220px, 70vw);
    object-fit: contain;
}

@media (min-width: 640px) {
    .footer-credit-logo {
        height: 40px;
    }
}

.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;
}

body.nav-open {
    overflow: hidden;
}

.nav-link.is-active,
.nav-item.is-active > .nav-link,
.nav-dropdown-toggle.is-active {
    color: var(--brand);
}

/* Force identical type on every nav item (links + Θεραπείες button) at all breakpoints */
#site-nav > a.nav-link,
#site-nav button.nav-link {
    font-family: var(--font-sans) !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
}

@media (max-width: 1023px) {
    #site-nav > a.nav-link,
    #site-nav button.nav-link {
        font-size: 0.875rem !important;
        letter-spacing: 0.14em !important;
    }
}

/* ========== About page ========== */
.page-hero {
    padding: 8.5rem 0 4rem;
    text-align: center;
    background: #fff;
}

@media (min-width: 1024px) {
    .page-hero {
        padding: 10rem 0 5rem;
    }
}

.page-hero-label {
    display: inline-block;
    margin-bottom: 1.25rem;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand);
}

.page-hero h1 {
    margin-bottom: 1.5rem;
    font-size: clamp(2.2rem, 4vw, 3.25rem);
    line-height: 1.15;
    color: var(--ink);
}

.page-hero p {
    max-width: 640px;
    margin-inline: auto;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--muted);
}

.about-split {
    display: grid;
    gap: 2.5rem;
    padding: 0 0 5rem;
    align-items: center;
}

@media (min-width: 960px) {
    .about-split {
        grid-template-columns: 1.05fr 1fr;
        gap: 4.5rem;
        padding-bottom: 7rem;
    }
}

.about-split-media {
    position: relative;
    overflow: hidden;
    background: #ece7e1;
    aspect-ratio: 4 / 5;
    border-radius: 1.25rem;
}

@media (min-width: 960px) {
    .about-split-media {
        aspect-ratio: 5 / 6;
        min-height: 520px;
    }
}

.about-split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-split-content h2 {
    margin-bottom: 1.25rem;
    font-size: clamp(1.65rem, 2.6vw, 2.15rem);
    font-weight: 500;
    color: var(--ink);
}

.about-split-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.85;
    color: var(--muted);
}

.about-split-content .btn {
    margin-top: 1.25rem;
}

/* Unified about page layout */
.page-section {
    padding: 4rem 0;
}

@media (min-width: 1024px) {
    .page-section {
        padding: 5rem 0;
    }
}

.about-page {
    background: #fff;
}

.about-stack {
    display: grid;
    gap: 3rem;
    text-align: left;
}

@media (min-width: 1024px) {
    .about-stack {
        gap: 3.5rem;
    }
}

.about-lead p {
    max-width: 46rem;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--muted);
}

.about-page .about-values-grid {
    display: grid;
    gap: 2rem;
    padding: 2rem;
    border-radius: 1.25rem;
    background: linear-gradient(180deg, #f8fafb 0%, #f3f7f9 100%);
}

@media (min-width: 768px) {
    .about-page .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        padding: 2.5rem;
    }

    .about-page .about-value {
        padding: 0;
        border-right: 0;
    }
}

.about-page .about-value h3 {
    margin-bottom: 0.85rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
}

.about-page .about-value p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--muted);
}

.about-page .about-value p + p {
    margin-top: 0.85rem;
}

.about-page .about-split {
    padding: 0;
    align-items: start;
    gap: 2rem;
}

@media (min-width: 960px) {
    .about-page .about-split {
        grid-template-columns: 1fr 1.05fr;
        gap: 3rem;
        padding-bottom: 0;
    }

    .about-page .about-split-media {
        min-height: 0;
        aspect-ratio: 4 / 5;
    }
}

.about-values {
    background: #faf9f7;
    padding: 4.5rem 0 5rem;
}

@media (min-width: 1024px) {
    .about-values {
        padding: 6rem 0 7rem;
    }
}

.about-values-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .about-values-grid:has(> .about-value:nth-child(3)) {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-value {
        padding: 0 2rem;
        border-right: 1px solid rgba(0, 0, 0, 0.08);
    }

    .about-value:first-child {
        padding-left: 0;
    }

    .about-value:last-child {
        padding-right: 0;
        border-right: 0;
    }
}

.about-value h3 {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
}

.about-value p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--muted);
}

.about-value p + p {
    margin-top: 1rem;
}

/* ========== Services catalog ========== */
.page-hero--compact {
    padding-top: 7.5rem;
    padding-bottom: 3rem;
    text-align: left;
}

@media (min-width: 1024px) {
    .page-hero--compact {
        padding-top: 8.5rem;
        padding-bottom: 3.5rem;
    }
}

.page-hero--compact h1,
.page-hero--compact p {
    max-width: none;
    margin-left: 0;
    text-align: left;
}

.page-hero--compact p {
    max-width: 640px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.breadcrumbs a:hover {
    color: var(--brand);
}

.services-page {
    padding-bottom: 5rem;
}

.services-layout {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .services-layout {
        grid-template-columns: minmax(0, 1fr) 280px;
        gap: 3.5rem;
        align-items: start;
    }
}

.services-catalog {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.services-catalog--related {
    margin-top: 2rem;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .services-catalog--related {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .services-catalog--related {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-item {
    display: grid;
    gap: 1.25rem;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    background: #fff;
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

@media (min-width: 720px) {
    .service-item {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 1.5rem;
        padding: 1.15rem;
    }
}

.service-item:hover {
    border-color: rgba(153, 197, 214, 0.55);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.service-item-media {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 0.75rem;
    background: #ece7e1;
    aspect-ratio: 4 / 3;
}

@media (min-width: 720px) {
    .service-item-media {
        aspect-ratio: 1 / 1;
        height: 100%;
        min-height: 160px;
    }
}

.service-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.service-item:hover .service-item-media img {
    transform: scale(1.04);
}

.service-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 6px 10px;
    background: var(--ink);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 999px;
}

.service-badge--pending {
    left: auto;
    right: 12px;
    background: linear-gradient(135deg, #e8a54b 0%, #d4893a 100%);
    letter-spacing: 0;
    font-size: 14px;
    line-height: 1;
    padding: 6px 9px;
}

.service-show-media .service-badge--pending {
    font-size: 10px;
    letter-spacing: 0.08em;
    padding: 6px 10px;
}

.service-pending-dot {
    display: inline-block;
    margin-left: 0.35rem;
    color: #d4893a;
    font-size: 0.85em;
    vertical-align: middle;
}

.service-item-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.15rem 0.25rem 0.15rem 0;
    min-width: 0;
}

.service-item-cat {
    margin-bottom: 0.45rem;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand);
}

.service-item-body h3 {
    margin: 0 0 0.55rem;
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    line-height: 1.3;
    font-weight: 500;
}

.service-item-body h3 a:hover {
    color: var(--brand);
}

.service-item-excerpt {
    margin: 0 0 1rem;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--muted);
}

.service-item-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
}

.service-item-price,
.service-show-price {
    display: flex;
    align-items: baseline;
    gap: 0.65rem;
}

.service-item-link {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand);
    transition: color .3s ease;
}

.service-item-link:hover {
    color: var(--brand-dark);
}

.price-old {
    color: var(--muted);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.price-new {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink);
}

/* Related services keep card-like stacking */
.services-catalog--related .service-item {
    grid-template-columns: 1fr;
    height: 100%;
}

.services-catalog--related .service-item-media {
    aspect-ratio: 4 / 3;
    min-height: 0;
}

.services-catalog--related .service-item-excerpt {
    display: none;
}

.services-catalog--related .service-item-meta {
    margin-top: auto;
}

.services-sidebar {
    display: grid;
    gap: 1.5rem;
}

.sidebar-block {
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    background: #fff;
}

.sidebar-block h2 {
    margin: 0 0 1.1rem;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.sidebar-cats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.15rem;
}

.sidebar-cats a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.9rem;
    color: var(--muted);
    transition: color .3s ease;
}

.sidebar-cats li:last-child a {
    border-bottom: 0;
}

.sidebar-cats a span {
    font-size: 0.8rem;
    color: #b0b0b0;
}

.sidebar-cats a:hover,
.sidebar-cats a.is-active {
    color: var(--brand);
}

.sidebar-cats a.is-active span {
    color: var(--brand);
}

.sidebar-search {
    position: relative;
}

.sidebar-search input {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 0.85rem 2.75rem 0.85rem 0.9rem;
    font: inherit;
    font-size: 0.92rem;
    outline: none;
    transition: border-color .3s ease;
}

.sidebar-search input:focus {
    border-color: var(--brand);
}

.sidebar-search button {
    position: absolute;
    right: 0.35rem;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
}

.sidebar-search svg {
    width: 18px;
    height: 18px;
}

.services-empty {
    padding: 3rem 0;
    text-align: center;
    color: var(--muted);
}

.services-empty .btn {
    margin-top: 1.25rem;
}

.services-pagination {
    margin-top: 2.5rem;
}

.pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    font-size: 0.9rem;
}

.pager a {
    color: var(--brand);
    font-weight: 600;
}

.pager-disabled {
    color: #c4c4c4;
}

.pager-status {
    color: var(--muted);
}

/* Service show */
.service-show-cat {
    margin-top: -0.5rem !important;
    font-size: 12px !important;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand) !important;
}

.service-show {
    padding-bottom: 4rem;
}

.service-show-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 960px) {
    .service-show-grid {
        grid-template-columns: 1.1fr 1fr;
        gap: 4rem;
        align-items: start;
    }
}

.service-show-media {
    position: relative;
    overflow: hidden;
    background: #ece7e1;
    aspect-ratio: 4 / 3;
}

.service-show-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-show-price {
    margin-bottom: 1.25rem;
}

.service-show-price .price-new {
    font-size: 1.5rem;
}

.service-show-excerpt {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--muted);
}

.service-show-description {
    margin-bottom: 1.75rem;
    font-size: 0.98rem;
    line-height: 1.85;
    color: var(--muted);
}

.service-show-description p {
    margin-bottom: 1rem;
}

.service-show-description h3 {
    margin: 1.75rem 0 0.75rem;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--ink);
}

.service-show-description ul {
    margin: 0 0 1.15rem;
    padding-left: 1.2rem;
}

.service-show-description li {
    margin-bottom: 0.4rem;
}

.service-show-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.service-show-tags a {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.45rem 0.8rem;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    transition: all .3s ease;
}

.service-show-tags a:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.related-services {
    padding: 0 0 5rem;
}

.related-services h2 {
    font-size: 1.75rem;
}

/* ========== Contact page ========== */
.contact-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

@media (min-width: 1024px) {
    .contact-hero {
        min-height: 520px;
    }
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(20, 20, 20, 0.35), rgba(20, 20, 20, 0.4));
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding-top: 5rem;
}

.contact-hero-content h1 {
    font-size: clamp(2.4rem, 5vw, 3.75rem);
    font-weight: 500;
}

.contact-intro {
    padding: 4rem 0;
    text-align: left;
}

@media (min-width: 1024px) {
    .contact-intro {
        padding: 5rem 0;
    }
}

.contact-intro p {
    max-width: 46rem;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--muted);
}

.contact-main {
    padding: 0 0 5rem;
}

.contact-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 960px) {
    .contact-grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 4rem;
        align-items: start;
    }
}

.contact-details {
    display: grid;
    gap: 2.5rem;
}

.contact-block h2 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
    color: var(--ink);
}

.contact-block p {
    margin: 0 0 0.85rem;
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--muted);
}

.contact-block a {
    transition: color .3s ease;
}

.contact-block a:hover {
    color: var(--brand);
}

.contact-legal {
    margin-top: 1.25rem !important;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 0.86rem !important;
    color: #8a93a0 !important;
}

.contact-hours {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}

.contact-hours li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.95rem;
    color: var(--muted);
}

.contact-hours li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.contact-hours strong {
    color: var(--ink);
    font-weight: 600;
}

.contact-map {
    overflow: hidden;
    background: #ece7e1;
    min-height: 360px;
    aspect-ratio: 4 / 3;
}

@media (min-width: 960px) {
    .contact-map {
        min-height: 480px;
        aspect-ratio: auto;
        height: 100%;
    }
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
    display: block;
}

/* ========== Price list ========== */
.price-page {
    padding: 3rem 0 5rem;
    background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 40%, #f6f3ef 100%);
}

.price-stack {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .price-stack {
        gap: 2.5rem;
    }
}

.price-block {
    display: grid;
    gap: 0;
    overflow: hidden;
    border-radius: 1.25rem;
    background: #fff;
    box-shadow: 0 12px 40px rgba(58, 58, 58, 0.06);
    transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.price-block:hover {
    box-shadow: 0 18px 48px rgba(58, 58, 58, 0.1);
    transform: translateY(-2px);
}

@media (min-width: 900px) {
    .price-block {
        grid-template-columns: minmax(220px, 320px) 1fr;
        align-items: stretch;
    }
}

.price-block-media {
    position: relative;
    min-height: 200px;
    background: linear-gradient(135deg, #e8f4f8 0%, #f6f3ef 100%);
    overflow: hidden;
}

.price-block-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 200px;
}

@media (min-width: 900px) {
    .price-block-media {
        min-height: 100%;
    }

    .price-block-media img {
        position: absolute;
        inset: 0;
        min-height: 100%;
    }
}

.price-block-content {
    padding: 1.75rem 1.5rem 2rem;
}

@media (min-width: 768px) {
    .price-block-content {
        padding: 2.25rem 2.5rem 2.5rem;
    }
}

.price-block-content h2 {
    margin-bottom: 1.25rem;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    color: var(--ink);
}

.price-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.price-table thead {
    display: none;
}

@media (min-width: 640px) {
    .price-table thead {
        display: table-header-group;
    }

    .price-table thead th {
        padding: 0.65rem 1rem;
        text-align: left;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--muted);
        border-bottom: 1px solid rgba(153, 197, 214, 0.45);
        background: linear-gradient(90deg, rgba(153, 197, 214, 0.12), transparent);
    }

    .price-table thead th:last-child {
        text-align: right;
        white-space: nowrap;
    }
}

.price-table tbody tr {
    border-bottom: 1px solid rgba(58, 58, 58, 0.06);
    transition: background 0.25s ease-in-out;
}

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

.price-table tbody tr:hover {
    background: rgba(153, 197, 214, 0.1);
}

.price-table td {
    padding: 0.9rem 0;
    vertical-align: middle;
}

@media (min-width: 640px) {
    .price-table td {
        padding: 0.95rem 1rem;
    }

    .price-table td:last-child {
        text-align: right;
        white-space: nowrap;
    }
}

/* Mobile stacked rows */
@media (max-width: 639px) {
    .price-table tbody tr {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 1rem;
        padding: 0.15rem 0;
    }

    .price-table td {
        padding: 0.75rem 0;
        border: 0;
    }

    .price-table td:first-child {
        flex: 1;
        font-weight: 500;
    }

    .price-table td:last-child {
        text-align: right;
        flex-shrink: 0;
    }
}

.price-amount {
    display: inline-block;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.price-note {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 400;
}

@media (min-width: 640px) {
    .price-note {
        display: inline;
        margin-top: 0;
        margin-left: 0.35rem;
    }
}

.price-note-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2rem 1.75rem;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(153, 197, 214, 0.22) 0%, #f6f3ef 55%, #fff 100%);
    border: 1px solid rgba(153, 197, 214, 0.35);
}

@media (min-width: 768px) {
    .price-note-box {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 2.25rem 2.5rem;
        gap: 2rem;
    }
}

.price-note-box p {
    max-width: 40rem;
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--ink);
}

.price-note-box .btn {
    flex-shrink: 0;
    transition: all 0.3s ease-in-out;
}

/* ========== Booking wizard ========== */
.booking-page {
    padding: 0 0 5rem;
    background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 36%, #f6f3ef 100%);
}

.booking-layout {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .booking-layout {
        grid-template-columns: 340px minmax(0, 1fr);
        align-items: start;
    }
}

.booking-summary,
.booking-card,
.booking-success-card {
    border-radius: 1.5rem;
    background: #fff;
    box-shadow: 0 14px 40px rgba(58, 58, 58, 0.07);
}

.booking-summary {
    padding: 1.5rem;
    position: sticky;
    top: 6.5rem;
}

.booking-summary-label {
    display: inline-block;
    margin-bottom: 0.65rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand);
}

.booking-summary h2 {
    margin-bottom: 0.85rem;
    font-size: 1.45rem;
}

.booking-summary p {
    margin-bottom: 1.25rem;
    color: var(--muted);
    line-height: 1.7;
}

.booking-summary img {
    width: 100%;
    border-radius: 1rem;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.booking-card,
.booking-success-card {
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .booking-card,
    .booking-success-card {
        padding: 2rem;
    }
}

.booking-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .booking-steps {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.booking-step {
    border: 1px solid rgba(153, 197, 214, 0.35);
    background: #f8fbfd;
    color: var(--muted);
    border-radius: 999px;
    padding: 0.85rem 0.9rem;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.booking-step.is-active {
    background: linear-gradient(135deg, rgba(153, 197, 214, 0.28) 0%, rgba(255, 255, 255, 0.98) 100%);
    color: var(--ink);
    border-color: rgba(153, 197, 214, 0.75);
}

.booking-alert,
.booking-note,
.booking-bank-details {
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    line-height: 1.7;
}

.booking-alert {
    margin-bottom: 1.25rem;
    color: #934747;
    background: #fff5f5;
    border: 1px solid #f1c4c4;
}

.booking-note,
.booking-bank-details {
    background: linear-gradient(135deg, rgba(153, 197, 214, 0.16) 0%, #fff 100%);
    border: 1px solid rgba(153, 197, 214, 0.3);
}

.booking-panel h2 {
    margin-bottom: 0.65rem;
    font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.booking-lead {
    margin-bottom: 1.5rem;
    color: var(--muted);
    line-height: 1.7;
}

.booking-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .booking-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.booking-grid--schedule {
    margin-top: 1rem;
}

.booking-field {
    display: grid;
    gap: 0.55rem;
}

.booking-field span {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--ink);
}

.booking-field input,
.booking-field select,
.booking-field textarea {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 0.9rem;
    padding: 0.95rem 1rem;
    font: inherit;
    outline: none;
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(153, 197, 214, 0.14);
}

.booking-map {
    margin: 1.25rem 0;
    overflow: hidden;
    border-radius: 1.25rem;
    min-height: 320px;
}

.booking-map iframe {
    width: 100%;
    min-height: 320px;
    height: 100%;
    border: 0;
}

.booking-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1rem;
    color: var(--muted);
}

.booking-check input {
    margin-top: 0.2rem;
}

.booking-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    min-height: 3rem;
}

.booking-slot {
    border: 1px solid rgba(153, 197, 214, 0.45);
    background: #fff;
    color: var(--ink);
    border-radius: 999px;
    padding: 0.75rem 1rem;
    font: inherit;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.booking-slot:hover,
.booking-slot.is-active {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.booking-slots-placeholder {
    margin: 0;
    color: var(--muted);
}

.booking-payment-options {
    display: grid;
    gap: 1rem;
    margin-top: 1.25rem;
}

.booking-payment-option {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    transition: all 0.3s ease-in-out;
}

.booking-payment-option:has(input:checked) {
    border-color: rgba(153, 197, 214, 0.8);
    background: linear-gradient(135deg, rgba(153, 197, 214, 0.14) 0%, #fff 100%);
}

.booking-payment-option strong,
.booking-bank-details strong {
    color: var(--ink);
}

.booking-payment-option small {
    display: block;
    margin-top: 0.35rem;
    color: var(--muted);
    line-height: 1.6;
}

.booking-bank-details {
    margin-top: 1rem;
}

.booking-bank-details h3 {
    margin-bottom: 0.85rem;
}

.booking-bank-details p {
    margin: 0 0 0.7rem;
    color: var(--muted);
}

.booking-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.booking-actions .btn {
    transition: all 0.3s ease-in-out;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.5rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    color: var(--ink);
}

.btn-ghost:hover {
    border-color: var(--brand);
    color: var(--brand);
}

/* ========== Admin bookings ========== */
.admin-auth-wrap {
    display: flex;
    justify-content: center;
}

.admin-auth-card {
    width: 100%;
    max-width: 34rem;
    display: grid;
    gap: 1rem;
    padding: 2rem;
    border-radius: 1.5rem;
    background: #fff;
    box-shadow: 0 14px 40px rgba(58, 58, 58, 0.07);
}

.admin-auth-card h2 {
    margin-bottom: 0.4rem;
}

.admin-page-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.admin-filters {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    border-radius: 1.25rem;
    background: #fff;
    box-shadow: 0 10px 30px rgba(58, 58, 58, 0.05);
}

@media (min-width: 768px) {
    .admin-filters {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: end;
    }
}

.admin-filters-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.admin-table-wrap {
    overflow-x: auto;
    border-radius: 1.25rem;
    background: #fff;
    box-shadow: 0 14px 40px rgba(58, 58, 58, 0.07);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 860px;
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.admin-table th {
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    background: linear-gradient(90deg, rgba(153, 197, 214, 0.12), transparent);
}

.admin-table td {
    color: var(--muted);
    line-height: 1.65;
}

.admin-table td strong {
    color: var(--ink);
}
