/* orchid_510 — Zalendar template theme */
:root {
    --bg: linear-gradient(170deg, #f4effc 0%, #ece4f7 100%);
    --surface: #ffffff;
    --text: #3a2b52;
    --muted: #8d7ea8;
    --accent: #6b3fa0;
    --accent-text: #ffffff;
    --line: #e2d8f0;
    --radius: 18px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: linear-gradient(170deg, #f4effc 0%, #ece4f7 100%);
    color: var(--text);
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    line-height: 1.65;
}
h1, h2, h3, h4, h5, h6 { font-family: Georgia, 'Times New Roman', serif; color: var(--text); margin: 0 0 .6em; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 6vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
p { margin: 0 0 1rem; }
a { color: var(--accent); }
img { max-width: 100%; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }
.section-padding { padding: 5.5rem 0; }
.section-tag { display: inline-block; font-size: .8rem; text-transform: uppercase; letter-spacing: .15em; margin-bottom: .9rem; color: var(--muted); }
.section-lead { color: var(--muted); max-width: 640px; }

.alert { padding: 1rem 1.25rem; margin: 0; text-align: center; font-weight: 600; }
.alert-success { background: #d1e7dd; color: #0f5132; }
.alert-warning { background: #fff3cd; color: #664d03; }

.site-navbar { position: sticky; top: 0; z-index: 100; }
.site-navbar .inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; max-width: 1140px; margin: 0 auto; padding: .8rem 1.25rem; }
.navbar-brand { display: flex; align-items: center; text-decoration: none; }
.brand-text { font-family: Georgia, 'Times New Roman', serif; font-size: 1.4rem; color: var(--text); }
.logo-image { max-height: 46px; }
.nav-menu { display: flex; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.nav-link { display: block; padding: .5rem .85rem; color: var(--text); text-decoration: none; font-size: .95rem; }
.nav-link:hover { color: var(--accent); }
.navbar-toggler { display: none; background: none; border: 1px solid var(--line); padding: .45rem .6rem; cursor: pointer; border-radius: var(--radius); }
.navbar-toggler-icon { display: block; width: 22px; height: 2px; background: var(--text); position: relative; }
.navbar-toggler-icon::before, .navbar-toggler-icon::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--text); }
.navbar-toggler-icon::before { top: -7px; }
.navbar-toggler-icon::after { top: 7px; }
@media (max-width: 900px) {
    .navbar-toggler { display: block; }
    .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--surface); padding: .75rem; box-shadow: 0 14px 30px rgba(0,0,0,.15); }
    .nav-menu.open { display: flex; }
}
.site-navbar { background: var(--surface); border-bottom: 1px solid var(--line); }
.site-navbar .inner { flex-direction: column; gap: .4rem; padding-bottom: .4rem; }
@media (max-width: 900px) { .site-navbar .inner { flex-direction: row; } .navbar-toggler { position: static; } }
.hero-section { padding: 7rem 0 6rem; text-align: center; }
.hero-inner { display: flex; flex-direction: column; align-items: center; gap: 2.5rem; }
.hero-copy { max-width: 720px; }
.hero-actions { justify-content: center; }
.promo-card { max-width: 560px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.btn-solid, .btn-ghost, .btn-submit {
    display: inline-block; padding: .8rem 1.9rem; font-size: .95rem; font-weight: 600;
    text-decoration: none; cursor: pointer; border-radius: 999px; border: 2px solid var(--accent);
}
.btn-solid, .btn-submit { background: var(--accent); color: var(--accent-text); }
.btn-ghost { background: transparent; color: var(--accent); }
.btn-ghost:hover { background: var(--accent); color: var(--accent-text); }

.promo-card { background: var(--surface); border: 1px solid #e2d8f0; border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 32px rgba(107, 63, 160, .12); }
.promo-image { width: 100%; display: block; object-fit: cover; max-height: 320px; }
.promo-body { padding: 1.4rem; }
.promo-link { font-weight: 700; text-decoration: none; color: var(--accent); }

.staff-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.6rem; margin-top: 2.2rem; }
.staff-card { background: var(--surface); border: 1px solid #e2d8f0; border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 32px rgba(107, 63, 160, .12); text-align: center; }
.staff-photo { width: 100%; height: 280px; object-fit: cover; display: block; }
.staff-meta { padding: 1.1rem; }
.staff-name { font-weight: 700; margin-bottom: .4rem; }
.staff-note { color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; }
.social-icon { list-style: none; display: flex; gap: .6rem; padding: 0; margin: .4rem 0 0; justify-content: center; }
.social-icon-link { color: var(--muted); font-size: 1.15rem; text-decoration: none; }
.social-icon-link:hover { color: var(--accent); }

.prices-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
@media (max-width: 900px) { .prices-layout { grid-template-columns: 1fr; } }
.price-rows { margin-top: 1.6rem; }
.price-row { display: flex; align-items: baseline; gap: .8rem; padding: .8rem 0; }
.price-service { font-weight: 600; }
.price-dots { flex: 1; border-bottom: 2px dotted var(--line); }
.price-value { font-weight: 700; }
.prices-media img { width: 100%; border-radius: var(--radius); box-shadow: 0 12px 32px rgba(107, 63, 160, .12); }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.6rem; margin-top: 2.2rem; }
.service-card { background: var(--surface); border: 1px solid #e2d8f0; border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 32px rgba(107, 63, 160, .12); }
.service-photo { width: 100%; height: 210px; object-fit: cover; display: block; }
.service-meta { padding: 1.1rem 1.2rem; display: flex; justify-content: space-between; align-items: center; gap: .8rem; }
.service-meta h4 { margin: 0; font-size: 1.05rem; }
.service-price { color: var(--accent); }

.booking-container { max-width: 860px; }
.booking-head { text-align: center; margin-bottom: 2.2rem; }
.booking-form { background: var(--surface); border: 1px solid #e2d8f0; border-radius: var(--radius); box-shadow: 0 12px 32px rgba(107, 63, 160, .12); padding: 2rem; }
.booking-block { margin-bottom: 1.4rem; }
.booking-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-bottom: 1.4rem; }
@media (max-width: 700px) { .booking-grid-2 { grid-template-columns: 1fr; } }
.form-label { display: block; font-weight: 600; margin-bottom: .45rem; }
.required::after { content: " *"; color: var(--accent); }
.form-control, .form-select {
    width: 100%; padding: .65rem .8rem; font-size: 1rem; color: var(--text);
    background: #ffffff; border: 1px solid var(--line); border-radius: calc(var(--radius) / 2 + 4px);
}
.form-control:focus, .form-select:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.table-responsive { overflow-x: auto; }
.booking-table { width: 100%; border-collapse: collapse; }
.booking-table th, .booking-table td { text-align: left; padding: .6rem .7rem; border-bottom: 1px solid var(--line); }
.field-hint { color: var(--muted); font-size: .82rem; }
.booking-consent { display: flex; gap: .6rem; align-items: baseline; margin-bottom: 1.6rem; }
.booking-submit { text-align: center; }

.contact-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 3rem; align-items: start; margin-bottom: 2rem; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-link { color: var(--text); text-decoration: none; }
.contact-link:hover { color: var(--accent); }
.contact-info .social-icon { justify-content: flex-start; }
.hours-card { display: flex; gap: 1rem; align-items: center; background: var(--surface); border: 1px solid #e2d8f0; border-radius: var(--radius); box-shadow: 0 12px 32px rgba(107, 63, 160, .12); padding: 1.3rem 1.5rem; }
.hours-icon { font-size: 1.8rem; color: var(--accent); }
.hours-card strong { display: block; }
.hours-line { color: var(--muted); }
.contact-map { border-radius: var(--radius); overflow: hidden; }
.google-map { display: block; border: 0; }

.site-footer { border-top: 1px solid var(--line); padding: 1.6rem 0; margin-top: 2rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.copyright-text { margin: 0; color: var(--muted); font-size: .9rem; }
.copyright-text a { color: var(--muted); }
.back-top-icon { color: var(--accent); font-size: 1.5rem; text-decoration: none; }

/* --- theme-specific touches --- */

h1, h2 { font-weight: 500; font-style: italic; }
.section-tag { color: var(--accent); letter-spacing: .32em; text-transform: uppercase; font-size: .7rem; }
.deco { display: block; width: 56px; height: 2px; margin: 1.1rem auto;
        background: linear-gradient(90deg, transparent, var(--accent), transparent); }
.section-padding { padding: 6.5rem 0; }
.staff-photo, .promo-image { border-radius: 18px 90px 18px 90px; }
