/* MediaSpis frontend — brand stylesheet */
:root {
    --brand: #99c5d6;
    --brand-dark: #7eb0c4;
    --ink: #3a3a3a;
    --muted: #8a8a8a;
    --footer: #f6f3ef;
    --hero-btn: #5f6f73;
    --font-sans: "Open Sans", ui-sans-serif, system-ui, sans-serif;
    --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", 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;
}

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

.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;
        background: transparent;
        color: inherit;
        gap: 1.75rem;
    }
}

.nav-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: color .3s ease;
}

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

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

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

/* 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 5rem;
    text-align: center;
}

.section-newsletter h2 {
    margin-bottom: 0.75rem;
    font-size: clamp(1.9rem, 3vw, 2.5rem);
}

.newsletter-lead {
    max-width: 560px;
    margin: 0 auto 2rem;
    font-size: 0.98rem;
    line-height: 1.7;
    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);
}

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

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

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr;
        gap: 4rem;
        padding: 5rem 0;
    }
}

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

.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 {
    color: var(--brand);
}

/* ========== 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;
}

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

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

.about-split-content h2 {
    margin-bottom: 1.25rem;
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    color: #415962;
}

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

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

.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(3, 1fr);
        gap: 0;
    }

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

/* ========== 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;
}

.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-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: 3.5rem 0 1rem;
    text-align: center;
}

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

.contact-main {
    padding: 2rem 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-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;
}
