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

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

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

/* ===========================
   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;
}
.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 1.6fr;
    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(300px, 48vw, 730px);
    height: 100vh;
    background: #8b0000;
    z-index: 300;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;
    padding: 40px 60px;
}
.side-menu.open { transform: translateX(0); }

.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: 10px;
    flex: 1;
    justify-content: center;
}

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

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

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

/* ── 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: #0a0a0a;
    padding: 120px 40px 80px;
    color: #fff;
}
.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.admin-header h1 {
    font-family: 'Cormorant SC', serif;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 0.1em;
}
.admin-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.admin-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    padding: 32px;
}
.admin-card h3 {
    font-family: 'Cormorant SC', serif;
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
}
.admin-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
}
.admin-card-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #9b2335;
    text-decoration: none;
    letter-spacing: 0.05em;
}
.admin-card-link:hover { color: #fff; }

/* ── FLASH MESSAGES ─────────────────────────────────── */
.message { 
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    padding: 12px 16px;
    margin-bottom: 20px;
    text-align: center;
}
.message.error { background: rgba(155, 35, 53, 0.2); color: #e88; border: 1px solid #9b2335; }
.message.success { background: rgba(255,255,255,0.1); color: #ccc; border: 1px solid #555; }

/* ── 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(15px, 1.8vw, 18px);
    color: #ccc;
    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(60px, 10vw, 120px) 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;
}
