/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
    background: #fff;
}

img,
video,
canvas,
svg {
    max-width: 100%;
}

input,
select,
textarea,
button {
    max-width: 100%;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid #d7a15f;
    outline-offset: 3px;
}

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

/* ===========================
   SHARED BUTTONS
=========================== */
.btn-crimson {
    display: inline-block;
    background: #8b1a1a;
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 17px 48px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.btn-crimson:hover { background: #6b1212; }

.btn-admin-action {
    background: #f4f0ea;
    color: #111;
    border: 1px solid rgba(255,255,255,0.32);
}
.btn-admin-action:hover {
    background: #fff;
    color: #111;
}

/* ===========================
   IMAGE PLACEHOLDERS
=========================== */
.placeholder-img {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    font-weight: 600;
    color: rgba(0,0,0,0.15);
}
.placeholder-beige  { background: #e8e0d5; aspect-ratio: 3/4; }
.placeholder-dark   { background: #2a2a2a; aspect-ratio: 3/4; }
.placeholder-warm   { background: #c9977a; aspect-ratio: 3/4; }
.placeholder-red    { background: #7a1a1a; aspect-ratio: 3/4; }
.placeholder-grey   { background: #ccc; aspect-ratio: 3/4; }

/* ===========================
   NAVBAR
=========================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    height: 90px;
}

.hamburger {
    background: none;
    border: 1.5px solid #fff;
    border-radius: 50%;
    width: 46px; height: 46px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}
.hamburger span {
    display: block;
    width: 18px; height: 1.5px;
    background: #fff;
}

.navbar-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}
.navbar-logo-img { height: 55px; width: auto; }

.btn-book-appointment {
    border: 1.5px solid #fff;
    border-radius: 30px;
    color: #fff;
    background: transparent;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 12px 22px;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}
.btn-book-appointment:hover { background: #fff; color: #000; }

/* ===========================
   HERO ANIMATIONS
=========================== */
@keyframes wipe-center {
    from { clip-path: inset(0 50% 0 50%); }
    to   { clip-path: inset(0 0% 0 0%); }
}
@keyframes fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-title {
    animation: wipe-center 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}
.hero-subtitle {
    animation: fade-up 1.0s ease 1.0s both;
}
.hero .btn-crimson {
    animation: fade-in 0.9s ease 2.0s both;
}

/* ===========================
   HERO
=========================== */
.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    background-image: url('../img/legshoes.png');
    background-size: cover;
    background-position: center 60%;
    background-color: #b89880;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 90px;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.22);
}
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 0 20px;
}
.hero-title {
    font-family: 'Cormorant SC', 'Cormorant Garamond', serif;
    font-size: clamp(52px, 10vw, 128px);
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.05em;
    line-height: 1;
    text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(14px, 2vw, 20px);
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.18em;
    line-height: 1.7;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

@media (max-width: 700px) {
    .hero {
        height: 84svh;
        min-height: 620px;
        max-height: 760px;
        background-size: auto 100%;
        background-position: center top;
        background-repeat: no-repeat;
        background-color: #e8e1dc;
    }

    .hero-content {
        gap: 18px;
        padding: 96px 20px 0;
        justify-content: flex-start;
        min-height: 100%;
    }

    .hero-title {
        max-width: 360px;
        font-size: clamp(34px, 10vw, 44px);
        letter-spacing: 0.025em;
        line-height: 0.98;
    }

    .hero-subtitle {
        max-width: 310px;
        font-size: 14px;
        letter-spacing: 0.1em;
        line-height: 1.55;
    }

    .hero .btn-crimson {
        width: min(72vw, 280px);
        padding: 15px 22px;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .hero {
        min-height: 600px;
        background-size: auto 100%;
        background-position: center top;
    }

    .hero-content {
        padding-top: 92px;
    }
}

/* ===========================
   SCROLL REVEAL
=========================== */
.reveal {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
    clip-path: inset(0 0% 0 0);
}

/* ===========================
   SERVICE / TRUST
=========================== */
.service-section {
    display: flex;
    align-items: stretch;
    background: #fff;
    padding-left: 40px;
}
.service-img-wrap {
    flex-shrink: 0;
    width: clamp(240px, 35vw, 500px);
    padding: 30px;
}
.service-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-img-wrap .placeholder-img {
    height: 100%;
    min-height: 480px;
    aspect-ratio: unset;
    font-size: 120px;
    color: rgba(26,26,46,0.6);
}
.service-text {
    flex: 1;
    padding: clamp(40px, 6vw, 80px) clamp(40px, 6vw, 100px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.section-heading-serif {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.1;
}
.service-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 20px;
}
.service-body {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #333;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 520px;
}

/* ===========================
   OUR SERVICES
=========================== */
.our-services {
    background: #000;
    display: flex;
    align-items: center;
    min-height: 600px;
    padding: 80px 60px;
    gap: 40px;
}
.services-left {
    flex: 0 0 320px;
    color: #fff;
}
.services-title {
    font-family: 'Cormorant SC', 'Cormorant Garamond', serif;
    font-size: clamp(56px, 7vw, 100px);
    font-weight: 400;
    line-height: 0.95;
    color: #fff;
}
.services-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #ccc;
    line-height: 1.7;
    margin-top: 20px;
}
.services-cards {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    perspective: 1000px;
}
.service-card {
    text-decoration: none;
    position: relative;
    flex: 1;
    overflow: hidden;
    border-radius: 4px;
    transition: transform 0.15s ease;
}
.services-cards .service-card:nth-child(1) { margin-top: 80px; }
.services-cards .service-card:nth-child(2) { margin-top: 40px; }
.services-cards .service-card:nth-child(3) { margin-top: 0; }
.card-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}
.service-card .placeholder-img { aspect-ratio: unset; height: 400px; }
.card-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    font-style: italic;
    text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}

/* ===========================
   MARQUEE STRIPS
=========================== */
.marquee-strip {
    overflow: hidden;
    white-space: nowrap;
    padding: 14px 0;
}
.marquee-crimson { background: #8b1a1a; }
.marquee-white   { background: #f5f0eb; border-top: 1px solid #ddd; border-bottom: 1px solid #ddd; }
.marquee-white .marquee-track { animation-duration: 50s; }
.marquee-crimson .marquee-track { animation-duration: 50s; }

.marquee-track {
    display: inline-flex;
    animation: marquee-scroll 30s linear infinite;
}
@keyframes marquee-scroll {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
.marquee-item {
    font-family: 'Great Vibes', cursive, serif;
    font-size: 26px;
    padding: 0 28px;
    color: inherit;
}
.marquee-crimson .marquee-item { color: #fff; }
.marquee-white .marquee-item   { color: #1a1a1a; }
.marquee-diamond { font-size: 14px; vertical-align: middle; }

/* ===========================
   THE EXPERIENCE
=========================== */
.experience-section {
    display: flex;
    align-items: stretch;
    background: #fff;
    min-height: 460px;
    padding-left: clamp(20px, 5vw, 80px);
    padding-top: 40px;
    padding-bottom: 40px;
}
.experience-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 10px 20px 20px;
    gap: 0;
}
.experience-label span {
    font-family: 'Cormorant SC', 'Cormorant Garamond', serif;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 700;
    color: #8b1a1a;
    line-height: 1;
    letter-spacing: 0.05em;
}
.experience-img-wrap {
    flex: 0 0 clamp(200px, 30vw, 400px);
    align-self: stretch;
}
.experience-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 400px;
}
.experience-img-wrap .placeholder-img {
    height: 100%;
    aspect-ratio: unset;
    min-height: 500px;
    background: #c8c8c8;
}
.experience-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: clamp(30px, 4vw, 60px) clamp(40px, 5vw, 80px);
}
.step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 3.5vw, 52px);
    font-weight: 400;
    color: #8b1a1a;
}
.step-body {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin-top: 8px;
    max-width: 480px;
}

/* ===========================
   OUR PRICES
=========================== */
.prices-section {
    background: #000;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 30px 80px;
    min-height: 0;
}
.prices-img-wrap {
    flex: 0 0 clamp(180px, 28vw, 380px);
}
.prices-img {
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: contain;
    display: block;
}
.prices-img-wrap .placeholder-img {
    height: 480px;
    aspect-ratio: unset;
    background: #2a2a2a;
    font-size: 60px;
    color: rgba(255,255,255,0.1);
}
.prices-text { flex: 1; color: #fff; }
.prices-title {
    font-family: 'Cormorant SC', 'Cormorant Garamond', serif;
    font-size: clamp(52px, 7vw, 100px);
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.03em;
    line-height: 1;
}
.prices-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #ccc;
    margin-top: 24px;
}

/* ===========================
   PROUD TO WORK WITH
=========================== */
.partners-section {
    background: #fff;
    text-align: center;
    padding: 80px 40px;
}
.partners-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1a1a1a;
}
.partners-title {
    font-family: 'Cormorant SC', 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 400;
    color: #1a1a1a;
    margin-top: 12px;
}
.partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin-top: 60px;
    flex-wrap: wrap;
}
.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.partner-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}
.logo-candela {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #7b3fa0;
    letter-spacing: 1px;
}
.logo-skinstitut {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    color: #9a9aaa;
    font-style: italic;
}
.logo-zimmer {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}
.partner-logo small {
    font-size: 11px;
    color: #888;
    letter-spacing: 0.5px;
}

/* ===========================
   REVIEWS
=========================== */
.reviews-section {
    background: #7a0f0f;
    padding: 80px 40px;
    text-align: center;
}
.reviews-title {
    font-family: 'Cormorant SC', 'Cormorant Garamond', serif;
    font-size: clamp(24px, 3.5vw, 44px);
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.06em;
}
.reviews-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}
.review-arrow {
    background: none;
    border: 1.5px solid #fff;
    border-radius: 50%;
    width: 48px; height: 48px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
}
.review-arrow:hover { background: rgba(255,255,255,0.15); }
.review-slides { flex: 1; overflow: hidden; position: relative; min-height: 220px; }
.review-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}
.review-slide.active {
    position: absolute;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
.review-slide.slide-out {
    position: absolute;
    opacity: 0;
    transform: translateX(-60px);
    pointer-events: none;
}
.review-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 400;
    color: #fff;
    line-height: 1.7;
    font-style: italic;
}
.review-author {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-top: 20px;
    letter-spacing: 1px;
}

/* ===========================
   ANY QUESTIONS
=========================== */
.faq-section {
    background: #000;
    padding: 60px 40px;
}
.faq-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}
.faq-text { flex: 1; color: #fff; }
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.delay {
    transition-delay: 0.2s;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.faq-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 6vw, 88px);
    font-weight: 300;
    color: #fff;
    line-height: 1.05;
}
.faq-body {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #ccc;
    line-height: 1.7;
    margin-top: 24px;
}
.faq-img-wrap {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
}
.faq-img {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
}

/* ===========================
   PREMIUM CTA
=========================== */
.cta-section {
    background: #000;
    text-align: center;
    padding: 100px 40px;
    border-top: 1px solid #222;
}
.cta-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 400;
    color: #fff;
}
.cta-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #aaa;
    margin-top: 16px;
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
    background: #4d0808;
    color: #fff;
    padding: 0 0 60px;
}
.footer-brand {
    font-family: 'Cormorant SC', 'Cormorant Garamond', serif;
    font-size: clamp(52px, 9vw, 130px);
    font-weight: 400;
    color: #fff;
    text-align: center;
    padding: 40px 20px 50px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    letter-spacing: 0.04em;
    line-height: 1;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 60px 60px 0;
    max-width: 1400px;
    margin: 0 auto;
}
.footer-col { color: #fff; }
.footer-contact p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.5;
}
.footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}
.footer-socials a {
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    opacity: 0.85;
}
.footer-socials a:hover { opacity: 1; }
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 4px;
}
.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0.9;
    transition: opacity 0.2s;
}
.footer-nav a:hover { opacity: 1; text-decoration: underline; }
.footer-form-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px 36px;
    color: #1a1a1a;
}
.form-title {
    font-family: 'Cormorant SC', 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 500;
    color: #1a1a1a;
    letter-spacing: 0.05em;
}
.form-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #555;
    margin-top: 6px;
    margin-bottom: 24px;
}
.enquiry-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: flex; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.form-group label {
    font-family: 'Cormorant SC', 'Cormorant Garamond', serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1a1a1a;
}
.form-group input,
.form-group textarea {
    border: none;
    border-bottom: 1.5px solid #ccc;
    outline: none;
    padding: 8px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #333;
    background: transparent;
    resize: none;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-bottom-color: #8b1a1a; }
.btn-submit {
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 6px;
}
.btn-submit:hover { background: #333; }

/* ===========================
   SLIDE-OUT MENU
=========================== */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.menu-overlay.open { opacity: 1; pointer-events: auto; }

.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: clamp(280px, 36vw, 480px);
    height: 100vh;
    background: #8b0000;
    z-index: 300;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;
    padding: 40px 60px;
    overflow: hidden;
}
.side-menu.open { transform: translateX(0); }

.side-menu-admin {
    background: #101010;
    border-right: 1px solid rgba(255,255,255,0.12);
    box-shadow: 24px 0 80px rgba(0,0,0,0.42);
}

.menu-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    align-self: flex-end;
    margin-bottom: 30px;
    line-height: 1;
    padding: 4px;
}

.side-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    flex: 1;
    justify-content: flex-start;
    padding-top: 16px;
}

.side-nav-link {
    font-family: 'Cormorant SC', 'Cormorant Garamond', serif;
    font-size: clamp(13px, 1.6vw, 26px);
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s;
    white-space: nowrap;
}
.side-nav-link:hover { color: #ffcccc; }
.side-nav-link.active { color: #ff6b6b; }

.side-menu-admin .side-nav {
    align-items: stretch;
    gap: 0;
}

.side-menu-admin .side-nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(12px, 1vw, 15px);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.side-menu-admin .side-nav-link:hover {
    color: #fff;
    padding-left: 10px;
}

/* ===========================
   BOOKING PAGE
=========================== */
.booking-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top, rgba(155, 35, 53, 0.14), transparent 34%),
        linear-gradient(180deg, #050505 0%, #000 100%);
    padding: 108px clamp(20px, 3vw, 48px) 80px;
}
.booking-shell {
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
    min-width: 0;
}
.booking-hero {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 36px;
}
.booking-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #9b2335;
    margin-bottom: 16px;
}
.booking-title {
    font-family: 'Cormorant SC', serif;
    font-size: clamp(38px, 6vw, 76px);
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.08em;
    line-height: 1;
}
.booking-copy {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #aaa;
    line-height: 1.8;
    margin-top: 18px;
}
.booking-grid {
    display: grid;
    grid-template-columns: minmax(420px, 1.05fr) minmax(0, 0.95fr);
    gap: 28px;
    align-items: start;
}
.booking-panel {
    background: rgba(10, 10, 10, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    text-align: left;
    min-width: 0;
    overflow: hidden;
}
.booking-panel-details,
.booking-schedule {
    min-width: 0;
}
.booking-panel-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: #fff;
    margin-bottom: 20px;
}
.booking-form {
    width: 100%;
}
.booking-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.booking-service-browser {
    display: grid;
    gap: 18px;
    margin-bottom: 24px;
}
.booking-service-browser-head {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.95fr);
    gap: 18px;
    align-items: stretch;
}
.booking-service-copy,
.booking-service-summary {
    min-width: 0;
}
.booking-browser-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 10px;
}
.booking-service-browser-head h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}
.booking-service-browser-head p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255,255,255,0.58);
}
.booking-service-summary {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
}
.booking-service-summary span {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.booking-service-summary strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: #fff;
}
.booking-service-summary small {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    line-height: 1.7;
    color: rgba(255,255,255,0.58);
    text-transform: none;
    letter-spacing: 0.04em;
}
.booking-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.booking-category-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 16px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.02);
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.booking-category-tab:hover,
.booking-category-tab.is-active {
    color: #fff;
    border-color: rgba(153, 35, 53, 0.8);
    background: rgba(153, 35, 53, 0.16);
}
.booking-service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
    max-height: clamp(280px, 38vh, 430px);
    overflow-y: auto;
    padding: 10px 8px 10px 10px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.012);
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.18) transparent;
    overscroll-behavior: contain;
}
.booking-service-list::-webkit-scrollbar {
    width: 4px;
}
.booking-service-list::-webkit-scrollbar-track {
    background: transparent;
}
.booking-service-list::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.18);
    border-radius: 4px;
}
.booking-service-card {
    display: block;
    text-decoration: none;
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.booking-service-card:hover {
    border-color: rgba(153, 35, 53, 0.85);
    background: rgba(153, 35, 53, 0.12);
    transform: translateY(-1px);
}
.booking-service-card.is-selected {
    border-color: rgba(153, 35, 53, 0.85);
    background: rgba(153, 35, 53, 0.12);
}
.booking-service-card-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: baseline;
    margin-bottom: 8px;
}
.booking-service-card-head strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
}
.booking-service-card-head span {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.62);
}
.booking-service-card-time {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9b2335;
    margin-bottom: 8px;
}
.booking-service-card-copy {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.68);
    margin-bottom: 0;
}
.booking-time-hint {
    padding: 12px 14px;
    border: 1px dashed rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.58);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    line-height: 1.7;
}
.booking-package-field {
    display: grid;
    gap: 12px;
    margin: 0 0 22px;
}
.booking-package-field > label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}
.booking-package-options {
    display: grid;
    gap: 10px;
}
.booking-package-option {
    display: block;
    cursor: pointer;
}
.booking-package-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.booking-package-body {
    display: grid;
    gap: 8px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    transition: border-color 0.2s ease, background 0.2s ease;
}
.booking-package-option input:checked + .booking-package-body {
    border-color: rgba(153, 35, 53, 0.85);
    background: rgba(153, 35, 53, 0.12);
}
.booking-package-top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: baseline;
}
.booking-package-top strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
}
.booking-package-top em {
    font-style: normal;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.72);
    white-space: nowrap;
}
.booking-package-copy,
.booking-package-note {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    line-height: 1.7;
    color: rgba(255,255,255,0.58);
}
.booking-package-note {
    margin: 0;
    color: rgba(255,255,255,0.45);
}
.booking-field {
    margin-bottom: 18px;
}
.booking-field label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 8px;
}
.booking-field .booking-input,
.booking-field .booking-textarea {
    width: 100%;
    background: #202020;
    border: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.45);
    color: #f7f7f7;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    padding: 12px 14px;
    box-sizing: border-box;
    outline: none;
    color-scheme: dark;
    appearance: none;
    -webkit-appearance: none;
    resize: none;
    caret-color: #fff;
    text-shadow: none;
    -webkit-text-fill-color: #f7f7f7;
}
.booking-field .booking-input:focus,
.booking-field .booking-textarea:focus {
    border-color: rgba(255,255,255,0.28);
    border-bottom-color: #9b2335;
    background: #232323;
    box-shadow: 0 0 0 1px rgba(155,35,53,0.14);
}
.booking-field .booking-input.has-booking-error,
.booking-field .booking-textarea.has-booking-error {
    border-color: rgba(221, 62, 82, 0.95);
    border-bottom-color: rgba(221, 62, 82, 0.95);
    box-shadow: 0 0 0 1px rgba(221, 62, 82, 0.28);
}
.booking-field .booking-input::placeholder,
.booking-field .booking-textarea::placeholder {
    color: rgba(255,255,255,0.32);
    font-weight: 400;
    opacity: 1;
    -webkit-text-fill-color: rgba(255,255,255,0.32);
}
.booking-field-error,
.booking-slot-error {
    margin-top: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: #ff8a9a;
}
.booking-field .booking-input:-webkit-autofill,
.booking-field .booking-input:-webkit-autofill:hover,
.booking-field .booking-input:-webkit-autofill:focus,
.booking-field .booking-textarea:-webkit-autofill,
.booking-field .booking-textarea:-webkit-autofill:hover,
.booking-field .booking-textarea:-webkit-autofill:focus {
    -webkit-text-fill-color: #f7f7f7;
    -webkit-box-shadow: 0 0 0px 1000px #202020 inset;
    box-shadow: 0 0 0px 1000px #202020 inset;
    caret-color: #fff;
}
.booking-field .booking-textarea {
    resize: vertical;
    min-height: 130px;
}
.booking-form-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}
.booking-validation {
    padding: 14px 16px;
    border: 1px solid rgba(221, 62, 82, 0.7);
    background: rgba(155, 35, 53, 0.16);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    line-height: 1.65;
}
.booking-validation strong {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.booking-validation ul {
    margin: 0;
    padding-left: 18px;
    color: rgba(255,255,255,0.82);
}
.booking-help {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
}
.account-reminder {
    margin-bottom: 18px;
    padding: 14px 16px;
    border: 1px solid rgba(153, 0, 0, 0.35);
    background: rgba(153, 0, 0, 0.08);
    color: rgba(255,255,255,0.82);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    line-height: 1.7;
    letter-spacing: 0.04em;
}
.account-reminder a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.booking-schedule {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}
.booking-schedule-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}
.booking-copy-small {
    margin-top: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.56);
}
.booking-month-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
}
.booking-month-picker {
    display: flex;
    align-items: center;
    gap: 8px;
}
.booking-month-select {
    min-height: 34px;
    background: #080808;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0 28px 0 10px;
    cursor: pointer;
}
.booking-year-select {
    width: 92px;
}
.booking-month-link {
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.booking-calendar {
    background: #0b0b0b;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 16px;
}
.booking-calendar-head,
.booking-calendar-week {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}
.booking-calendar-head {
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}
.booking-day {
    min-height: clamp(84px, 8vw, 112px);
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    color: #fff;
    text-decoration: none;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
}
.booking-day.is-muted {
    opacity: 0.45;
}
.booking-day.is-outside-month {
    background:
        linear-gradient(180deg, rgba(0,0,0,0.52), rgba(0,0,0,0.78)),
        #020202;
    border-color: rgba(255,255,255,0.025);
    color: rgba(255,255,255,0.24);
    opacity: 1;
}
.booking-day.is-closed {
    border-color: rgba(155,35,53,0.18);
}
.booking-day.is-selected {
    background: rgba(155,35,53,0.16);
    border-color: rgba(155,35,53,0.55);
}
.booking-day.is-unavailable {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015)),
        #111111;
    border-color: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.42);
    cursor: not-allowed;
}
.booking-day.is-unavailable.is-selected,
.booking-day.is-unavailable.is-closed {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015)),
        #111111;
    border-color: rgba(255,255,255,0.07);
}
.booking-day.is-outside-month.is-unavailable,
.booking-day.is-outside-month.is-closed {
    background:
        linear-gradient(180deg, rgba(0,0,0,0.7), rgba(0,0,0,0.92)),
        #020202;
    border-color: rgba(255,255,255,0.025);
    color: rgba(255,255,255,0.24);
}
.booking-day-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    line-height: 1;
}
.booking-day-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}
.booking-day-state {
    display: inline;
}
.booking-slot-head h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 8px;
}
.booking-slot-head p,
.booking-empty {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}
.booking-slot-list.has-booking-error {
    padding: 16px;
    border: 1px solid rgba(221, 62, 82, 0.7);
    background: rgba(155, 35, 53, 0.08);
}
.booking-slot-slider-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}
.slot-nav-btn {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.15s;
}
.slot-nav-btn:hover { background: rgba(255,255,255,0.14); }
.booking-slot-slider {
    overflow-x: auto;
    flex: 1;
    padding: 2px 4px 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.18) transparent;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
}
.booking-slot-slider::-webkit-scrollbar { height: 3px; }
.booking-slot-slider::-webkit-scrollbar-track { background: transparent; }
.booking-slot-slider::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.18); border-radius: 2px; }
.booking-slot-track {
    display: flex;
    gap: 8px;
    width: max-content;
    padding: 2px;
    align-items: stretch;
}
.booking-slot-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 98px;
    min-height: 88px;
    padding: 14px 12px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    cursor: pointer;
    gap: 4px;
    transition: background 0.15s, border-color 0.15s;
    scroll-snap-align: start;
    user-select: none;
}
.booking-slot-pill:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.35);
}
.booking-slot-pill input { display: none; }
.booking-slot-pill .slot-time {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    line-height: 1;
}
.booking-slot-pill .slot-period {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.booking-slot-pill:has(input:checked),
.booking-slot-pill.is-selected {
    background: #9b2335;
    border-color: #9b2335;
}
.booking-slot-pill:has(input:checked) .slot-time,
.booking-slot-pill:has(input:checked) .slot-period,
.booking-slot-pill.is-selected .slot-time,
.booking-slot-pill.is-selected .slot-period { color: #fff; }

.booking-slot-pill:focus-within {
    outline: 2px solid rgba(155, 35, 53, 0.7);
    outline-offset: 2px;
}

.booking-calendar a,
.booking-month-link {
    color: #fff;
    text-decoration: none;
}

@media (max-width: 980px) {
    .booking-page {
        padding-top: 96px;
    }

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

    .booking-schedule-head {
        flex-direction: column;
    }

    .booking-service-browser-head {
        grid-template-columns: 1fr;
    }

    .booking-slot-slider-wrap {
        gap: 8px;
    }

    .slot-nav-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .booking-page {
        padding: 92px 12px 56px;
        width: 100vw;
        max-width: 100vw;
        overflow: hidden;
    }

    .booking-shell,
    .booking-hero {
        width: 100%;
        max-width: 100%;
    }

    .booking-hero {
        margin-bottom: 24px;
        overflow: hidden;
    }

    .booking-eyebrow {
        font-size: 10px;
        letter-spacing: 0.18em;
    }

    .booking-title {
        max-width: 100%;
        font-size: clamp(28px, 7.5vw, 34px);
        letter-spacing: 0.02em;
        line-height: 1.08;
        overflow-wrap: anywhere;
    }

    .booking-copy {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.65;
        overflow-wrap: anywhere;
    }

    .account-reminder {
        padding: 12px 14px;
        font-size: 12px;
        overflow-wrap: anywhere;
    }

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

    .booking-panel-title {
        font-size: 26px;
    }

    .booking-form-row,
    .booking-service-browser-head {
        grid-template-columns: 1fr;
    }

    .booking-category-tabs {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .booking-category-tab {
        width: 100%;
        min-height: 42px;
        padding: 10px 12px;
        letter-spacing: 0.08em;
        text-align: center;
        white-space: normal;
    }

    .booking-service-list {
        grid-template-columns: 1fr;
        max-height: 320px;
        padding: 8px 6px 8px 8px;
    }

    .booking-service-card-head,
    .booking-package-top,
    .booking-schedule-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .booking-service-card-head span,
    .booking-package-top em {
        white-space: normal;
    }

    .booking-month-nav {
        width: 100%;
        justify-content: space-between;
        gap: 8px;
    }

    .booking-month-picker {
        flex: 1;
        justify-content: center;
        min-width: 0;
        gap: 6px;
    }

    .booking-month-select {
        min-width: 0;
        width: 112px;
        font-size: 10px;
        letter-spacing: 0.04em;
        padding-left: 8px;
        padding-right: 18px;
    }

    .booking-year-select {
        width: 90px;
        flex: 0 0 90px;
    }

    .booking-calendar {
        padding: 10px;
    }

    .booking-calendar-head,
    .booking-calendar-week {
        gap: 3px;
    }

    .booking-calendar-head {
        font-size: 8px;
        letter-spacing: 0.02em;
        text-align: center;
    }

    .booking-calendar-head span {
        min-width: 0;
    }

    .booking-day {
        min-height: 58px;
        padding: 5px 2px;
        align-items: center;
        text-align: center;
        gap: 3px;
    }

    .booking-day-num {
        font-size: 20px;
    }

    .booking-day-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1px;
        width: 100%;
        font-size: 7px;
        letter-spacing: 0.01em;
        line-height: 1.05;
    }

    .booking-day-state {
        display: block;
        max-width: 100%;
        font-size: 7px;
        overflow-wrap: normal;
        white-space: nowrap;
    }

    .booking-slot-slider-wrap {
        display: grid;
        grid-template-columns: 32px minmax(0, 1fr) 32px;
    }
}

/* ===========================
   PLACEHOLDER PAGES
=========================== */
.placeholder-page {
    min-height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
    text-align: center;
}
.placeholder-page-inner { max-width: 600px; }
.placeholder-page-title {
    font-family: 'Cormorant SC', serif;
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.05em;
}
.placeholder-page-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #aaa;
    margin-top: 20px;
    margin-bottom: 40px;
}
.placeholder-page .btn-crimson {
    margin: 6px;
}

/* ── NAVBAR RIGHT (login + book) ───────────────────── */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.btn-nav-login {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: border-color 0.2s, color 0.2s;
}
.btn-nav-login:hover {
    border-color: #fff;
    color: #fff;
}

/* ── LOGIN PAGE ─────────────────────────────────────── */
.login-page {
    min-height: 100vh;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}
.login-box {
    width: 100%;
    max-width: 420px;
    text-align: center;
}
.login-logo {
    height: 60px;
    width: auto;
    margin-bottom: 40px;
}
.login-heading {
    font-family: 'Cormorant SC', serif;
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.15em;
    margin-bottom: 32px;
}
.login-field {
    margin-bottom: 20px;
    text-align: left;
}
.login-field label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #aaa;
    margin-bottom: 8px;
}
.login-input,
.login-field input {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    padding: 12px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.login-input:focus,
.login-field input:focus {
    border-color: #9b2335;
}
.login-btn {
    width: 100%;
    margin-top: 12px;
    background: #9b2335;
    color: #fff;
    border: none;
    padding: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: background 0.2s;
}
.login-btn:hover { background: #7a1c2a; }

/* ── ADMIN DASHBOARD ────────────────────────────────── */
.admin-dashboard {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(155, 35, 53, 0.08), transparent 28%),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 22%),
        #090909;
    padding: 120px 40px 90px;
    color: #fff;
}
.admin-shell {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}
.admin-hero-panel {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    align-items: flex-end;
    padding: 42px 44px;
    border: 1px solid rgba(255,255,255,0.08);
    background:
        linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
        rgba(18,18,18,0.95);
    box-shadow: 0 24px 80px rgba(0,0,0,0.32);
    margin-bottom: 30px;
}
.admin-hero-copy {
    max-width: 720px;
}
.admin-hero-eyebrow,
.admin-section-heading p,
.admin-featured-eyebrow {
    margin: 0 0 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}
.admin-hero-panel h1 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 7vw, 76px);
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 0.92;
}
.admin-hero-text {
    margin: 18px 0 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255,255,255,0.68);
}
.admin-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.admin-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.admin-hero-btn:hover {
    transform: translateY(-1px);
}
.admin-hero-btn-primary {
    background: #9b2335;
    color: #fff;
    border: 1px solid #9b2335;
}
.admin-hero-btn-primary:hover {
    background: #b52b40;
    border-color: #b52b40;
}
.admin-hero-btn-secondary {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.02);
}
.admin-hero-btn-secondary:hover {
    border-color: rgba(255,255,255,0.42);
    background: rgba(255,255,255,0.05);
}
.admin-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 42px;
}
.admin-featured-card,
.admin-card {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.admin-featured-card::after,
.admin-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(155,35,53,0), rgba(155,35,53,0.8), rgba(255,255,255,0.35));
    opacity: 0;
    transition: opacity 0.18s ease;
}
.admin-featured-card:hover,
.admin-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.16);
    box-shadow: 0 24px 55px rgba(0,0,0,0.28);
}
.admin-featured-card:hover::after,
.admin-card:hover::after {
    opacity: 1;
}
.admin-featured-card {
    min-height: 260px;
    padding: 28px 28px 26px;
    border: 1px solid rgba(255,255,255,0.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)),
        #151515;
}
.admin-featured-card-cms {
    background:
        radial-gradient(circle at top right, rgba(155,35,53,0.24), transparent 36%),
        radial-gradient(circle at bottom left, rgba(255,255,255,0.08), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012)),
        #151515;
}
.admin-featured-card-services {
    background:
        radial-gradient(circle at top right, rgba(181,43,64,0.18), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)),
        #151515;
}
.admin-featured-card-bookings {
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.1), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)),
        #151515;
}
.admin-featured-card-orders {
    background:
        radial-gradient(circle at top right, rgba(233,196,106,0.16), transparent 30%),
        linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)),
        #151515;
}
.admin-featured-card-pricing {
    background:
        radial-gradient(circle at top right, rgba(155,35,53,0.14), transparent 30%),
        linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)),
        #151515;
}
.admin-featured-card h2 {
    margin: 0 0 14px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 500;
    color: #fff;
    line-height: 1.02;
}
.admin-featured-card p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.72);
}
.admin-featured-link {
    display: inline-flex;
    margin-top: 26px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #f2d6db;
}
.admin-dashboard-section + .admin-dashboard-section {
    margin-top: 28px;
}
.admin-section-heading {
    margin-bottom: 16px;
}
.admin-section-heading p {
    margin-bottom: 0;
}
.admin-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}
.admin-card {
    min-height: 188px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 24px 22px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(23,23,23,0.92);
}
.admin-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    line-height: 1;
    font-weight: 500;
    color: #fff;
    margin: 0 0 12px;
}
.admin-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    line-height: 1.75;
    color: rgba(255,255,255,0.58);
    margin: 0;
}
.admin-card-link {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #cf4258;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.admin-card-link::after {
    content: "→";
    font-size: 13px;
}
.admin-card:hover .admin-card-link,
.admin-featured-card:hover .admin-featured-link {
    color: #fff;
}

/* ── FLASH MESSAGES ─────────────────────────────────── */
.message {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    padding: 14px 20px;
    margin-bottom: 24px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}
.message.error   { background: rgba(155, 35, 53, 0.15); color: #e88; border: 1px solid #9b2335; }
.message.success { background: rgba(255,255,255,0.06); color: #ccc; border: 1px solid #444; }

.inline-validation-summary {
    margin: 0 0 18px;
    padding: 14px 16px;
    border: 1px solid rgba(221, 62, 82, 0.7);
    background: rgba(155, 35, 53, 0.16);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    line-height: 1.65;
}

.inline-validation-summary strong {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.inline-validation-summary ul {
    margin: 0;
    padding-left: 18px;
    color: rgba(255,255,255,0.84);
}

.inline-field-error,
.error-message,
.field-error,
.profile-error {
    display: block;
    margin-top: 7px;
    min-height: 0;
    color: #ff8a9a;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    line-height: 1.5;
}

input.has-inline-error,
select.has-inline-error,
textarea.has-inline-error,
.login-input.has-inline-error,
.form-control.has-inline-error,
.cms-input.has-inline-error,
.cms-select.has-inline-error,
.checkout-input.has-inline-error,
.checkout-textarea.has-inline-error,
.cart-qty.has-inline-error {
    border-color: rgba(221, 62, 82, 0.95) !important;
    box-shadow: 0 0 0 1px rgba(221, 62, 82, 0.24);
}

/* ── FAQ PAGE ───────────────────────────────────────── */
.faq-page {
    min-height: 100vh;
    background: #0a0a0a;
    padding: 120px 0 80px;
    width: 100%;
}
.faq-page-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 40px;
}
.faq-page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(60px, 10vw, 100px);
    font-weight: 400;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}
.faq-category { margin-bottom: 60px; }
.faq-category-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 400;
    color: #fff;
    text-align: center;
    margin-bottom: 32px;
}
.faq-item { border-bottom: 1px solid #2a2a2a; }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 400;
    text-align: center;
    padding: 24px 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.faq-question:hover { color: #ccc; }
.faq-icon {
    font-size: 24px;
    font-weight: 300;
    flex-shrink: 0;
    color: #fff;
}
.faq-answer {
    display: none;
    padding: 0 40px 28px;
    text-align: center;
}
.faq-answer p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2.2vw, 22px);
    color: #fff;
    line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* ── Prices Page ─────────────────────────────────────────── */
.prices-page {
    background: #000;
    color: #fff;
    min-height: 100vh;
    padding-bottom: 80px;
}
.prices-hero {
    text-align: center;
    padding: clamp(110px, 12vw, 140px) 20px clamp(30px, 5vw, 60px);
}
.prices-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(60px, 12vw, 130px);
    font-style: italic;
    font-weight: 400;
    margin: 0;
    line-height: 1;
}
.prices-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}
.prices-category-heading {
    font-family: 'Cormorant SC', 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
    margin: 60px 0 10px;
}
.prices-list {
    border-top: 1px solid #333;
}
.price-row {
    border-bottom: 1px solid #333;
}
.price-row-header {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    cursor: default;
    text-align: left;
}
.price-row.has-desc .price-row-header {
    cursor: pointer;
}
.price-row-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 400;
}
.price-row-toggle {
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
    margin-left: 20px;
}
.price-row-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(13px, 1.5vw, 15px);
    line-height: 1.8;
    color: #ccc;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-bottom: 0;
}
.price-row.open .price-row-desc {
    padding-bottom: 24px;
}

/* PRODUCTS PAGE*/

/* ===========================
   RESPONSIVE — MOBILE
=========================== */

/* Prevent horizontal scroll globally */
html, body { overflow-x: hidden; }

/* ── Navbar: hide all right-side buttons on mobile (handled in side menu) ── */
@media (max-width: 900px) {
    .navbar { padding: 0 20px; }
    .navbar-right { display: none; }
}

/* ── Side menu action buttons (mobile only) ── */
.side-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.18);
    margin-top: 16px;
}

@media (min-width: 901px) {
    .side-menu-actions { display: none; }
}

.side-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 14px 20px;
    border-radius: 40px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.side-btn-book {
    background: #fff;
    color: #1a1a1a;
    border: none;
}
.side-btn-book:hover { background: #f0f0f0; color: #1a1a1a; }

.side-btn-login {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.55);
}
.side-btn-login:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* ── Side menu ── */
@media (max-width: 900px) {
    .side-menu { padding: 40px 32px; }
}
@media (max-width: 600px) {
    .side-menu { padding: 40px 24px; width: 85vw; }
}

/* ── Buttons ── */
@media (max-width: 600px) {
    .btn-crimson { padding: 14px 30px; }
}

/* ── Hero subtitle letter-spacing ── */
@media (max-width: 480px) {
    .hero-subtitle { letter-spacing: 0.06em; }
}

/* ── Service / Trust section ── */
@media (max-width: 900px) {
    .service-section {
        flex-direction: column;
        padding: 0;
    }
    .service-img-wrap {
        width: 100%;
        flex-shrink: unset;
        padding: 0;
    }
    .service-img-wrap .placeholder-img { min-height: 300px; }
    .service-text { padding: 40px 28px 56px; }
    .service-body { max-width: 100%; }
}

/* ── Our Services section ── */
@media (max-width: 900px) {
    .our-services {
        flex-direction: column;
        padding: 60px 28px;
        gap: 40px;
        min-height: unset;
    }
    .services-left { flex: none; width: 100%; }
    .services-cards {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        perspective: none;
        width: 100%;
    }
    .services-cards .service-card:nth-child(1),
    .services-cards .service-card:nth-child(2),
    .services-cards .service-card:nth-child(3) { margin-top: 0; flex: none; }
    .card-img { height: 240px; }
    .service-card .placeholder-img { height: 240px; }
}

/* ── Experience section ── */
@media (max-width: 900px) {
    .experience-section {
        flex-direction: column;
        padding: 50px 28px;
    }
    .experience-label {
        writing-mode: horizontal-tb;
        transform: none;
        flex-direction: row;
        justify-content: center;
        gap: 12px;
        padding: 0 0 20px;
    }
    .experience-label span { font-size: clamp(32px, 8vw, 52px); }
    .experience-img-wrap {
        flex: none;
        width: 100%;
        align-self: auto;
    }
    .experience-img { min-height: 280px; }
    .experience-steps { padding: 28px 0 0; }
    .step-body { max-width: 100%; }
}

/* ── Prices section (homepage) ── */
@media (max-width: 900px) {
    .prices-section {
        flex-direction: column;
        padding: 60px 28px;
        gap: 36px;
    }
    .prices-img-wrap {
        flex: none;
        width: 60%;
        max-width: 260px;
        margin: 0 auto;
    }
}

/* ── Reviews carousel ── */
@media (max-width: 600px) {
    .reviews-section { padding: 60px 20px; }
    .review-arrow { width: 38px; height: 38px; font-size: 18px; }
    .reviews-carousel { gap: 14px; }
    .review-slides { min-height: 280px; }
}

/* ── FAQ / Any Questions section (homepage) ── */
@media (max-width: 900px) {
    .faq-section { padding: 60px 28px; }
    .faq-inner {
        flex-direction: column;
        gap: 36px;
        max-width: 100%;
    }
    .faq-img-wrap {
        flex: none;
        width: 200px;
        margin: 0 auto;
    }
    .faq-body br { display: none; }
}

/* ── CTA section ── */
@media (max-width: 768px) {
    .cta-section { padding: 70px 28px; }
}

/* ── Footer ── */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        padding: 40px 28px 0;
        gap: 40px;
    }
    .footer-brand { font-size: clamp(36px, 9vw, 80px); padding: 30px 20px 40px; }
}

/* ── Login / Auth pages ── */
@media (max-width: 900px) {
    .login-page { padding-top: 110px; }
    .login-box { margin: 0 auto; }
}

/* ── Admin dashboard ── */
@media (max-width: 768px) {
    .admin-dashboard { padding: 110px 20px 60px; }
    .admin-hero-panel {
        padding: 28px 22px;
        flex-direction: column;
        align-items: flex-start;
    }
    .admin-hero-actions {
        justify-content: flex-start;
    }
    .admin-featured-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .admin-card h3 {
        font-size: 28px;
    }
    .admin-featured-card h2 {
        font-size: 32px;
    }
    .admin-hero-btn {
        width: 100%;
    }
}

/* Contact Page */
.contact-page {
    min-height: 100vh;
    padding: 120px 20px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.contact-container {
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.contact-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
}

.contact-sub {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 40px;
}

.contact-reminder {
    margin: -16px 0 28px;
}

.contact-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.contact-form label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 8px;
}

.contact-form .form-control {
    width: 100%;
    padding: 12px 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    border: 1px solid #333;
    border-radius: 0;
    background: #1a1a1a;
    color: #fff;
    transition: border-color 0.3s;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: #9b2335;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-crimson {
    width: 100%;
    padding: 15px 30px;
    font-size: 0.85rem;
    margin-top: 10px;
}

/* Policy / Terms Pages */
.policy-page {
    min-height: 100vh;
    background: #000;
    color: #fff;
    padding: 140px 28px 90px;
}

.policy-shell {
    max-width: 900px;
    margin: 0 auto;
}

.policy-kicker {
    margin: 0 0 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.48);
}

.policy-title {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 5.4rem);
    font-weight: 300;
    line-height: 1;
}

.policy-intro {
    max-width: 720px;
    margin: 24px 0 42px;
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
    line-height: 1.9;
}

.policy-list {
    display: grid;
    gap: 18px;
    margin: 0 0 42px;
}

.policy-item {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 18px;
}

.policy-item h2 {
    margin: 0 0 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
}

.policy-item p {
    margin: 0;
    color: rgba(255,255,255,0.72);
    font-size: 0.95rem;
    line-height: 1.8;
}

.policy-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Admin Enquiry Pages */
.admin-page {
    padding: 120px 20px 80px;
    min-height: 100vh;
    background: #000;
}

.admin-container {
    max-width: 900px;
    margin: 0 auto;
}

.admin-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #1a1a1a;
}

.admin-table th,
.admin-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.admin-table th {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aaa;
    background: #111;
}

.admin-table td {
    font-size: 0.9rem;
    color: #ddd;
}

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
}

.status-new {
    background: #9b2335;
    color: #fff;
}

.status-viewed {
    background: #d4a017;
    color: #fff;
}

.status-responded {
    background: #2d8a4e;
    color: #fff;
}

.btn-view {
    display: inline-block;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    border: 1px solid #666;
    transition: all 0.3s;
}

.btn-view:hover {
    background: #1a1a1a;
    color: #fff;
}

.btn-small {
    padding: 6px 15px;
    font-size: 0.7rem;
    margin-left: 10px;
}

.enquiry-detail {
    background: #1a1a1a;
    padding: 30px;
    border: 1px solid #333;
}

.enquiry-detail p {
    margin-bottom: 15px;
    color: #ddd;
}

.enquiry-message {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.enquiry-message p {
    margin-top: 10px;
    line-height: 1.6;
    color: #ddd;
}
