/* ===== STEEL SERENITY - SHARED STYLESHEET =====
   Premium salon website. Black + gold aesthetic.
   Shared across all 8 pages.
   ============================================= */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    --black: #0D0D0D;
    --gold: #C9A962;
    --gold-light: #d4bb7c;
    --gold-dark: #b8953a;
    --white: #F5F5F0;
    --grey-light: #E8E6E1;
    --grey-mid: #1A1A1A;
    --grey-dark: #141414;
    --grey-text: #A0A0A0;
    --grey-border: rgba(201, 169, 98, 0.15);
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --max-width: 1200px;
    --section-padding: 100px 0;
    --section-padding-mobile: 60px 0;
    --nav-height: 80px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.03em;
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    letter-spacing: 0.02em;
}

h4 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
}

/* Section label - small gold uppercase text above headings */
.section-label {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
}

.section-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--grey-text);
    max-width: 600px;
    margin-bottom: 48px;
}

/* ===== LAYOUT ===== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: var(--section-padding);
}

.text-center {
    text-align: center;
}

.text-center .section-intro {
    margin-left: auto;
    margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary:hover {
    background: var(--gold-light);
}

.btn-outline {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: all var(--transition);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--grey-border);
    transition: background var(--transition);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    transition: color var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

/* Active page underline */
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
}

.nav-cta {
    display: inline-block;
    padding: 10px 24px;
    background: var(--gold);
    color: var(--black) !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background var(--transition);
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    color: var(--black) !important;
}

/* Mobile menu button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== PAGE HEADER (for inner pages) ===== */
.page-header {
    padding: 160px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--grey-border);
}

.page-header h1 {
    margin-bottom: 16px;
}

.page-header h1 em {
    color: var(--gold);
    font-style: italic;
}

.page-header p {
    font-size: 1.05rem;
    color: var(--grey-text);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--grey-dark);
    border-top: 1px solid var(--grey-border);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand img {
    height: 36px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--grey-text);
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-col a,
.footer-col p {
    display: block;
    font-size: 0.9rem;
    color: var(--grey-text);
    margin-bottom: 10px;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--grey-border);
    border-radius: 50%;
    color: var(--grey-text);
    transition: all var(--transition);
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-bottom {
    border-top: 1px solid var(--grey-border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p,
.footer-bottom a {
    font-size: 0.78rem;
    color: var(--grey-text);
}

.footer-bottom a:hover {
    color: var(--gold);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

/* ===== DIVIDER ===== */
.divider {
    border: none;
    border-top: 1px solid var(--grey-border);
    margin: 0;
}

/* ===== CARDS ===== */
.card {
    background: var(--grey-mid);
    border: 1px solid var(--grey-border);
    padding: 40px;
    transition: border-color var(--transition);
}

.card:hover {
    border-color: var(--gold);
}

/* ===== IMAGE GRID LAYOUTS ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border: 1px solid var(--grey-border);
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: var(--grey-mid);
    border: 1px solid var(--grey-border);
    padding: 40px;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--gold);
    position: absolute;
    top: 16px;
    left: 32px;
    line-height: 1;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--grey-light);
    line-height: 1.8;
    margin-bottom: 20px;
    padding-top: 24px;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: var(--section-padding-mobile);
    }

    /* Mobile navigation */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--grey-dark);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 24px;
        transition: right var(--transition);
        border-left: 1px solid var(--grey-border);
    }

    .nav-links.open {
        right: 0;
    }

    .menu-toggle {
        display: block;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .page-header {
        padding: 120px 0 40px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .btn-group {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        text-align: center;
        width: 100%;
    }
}

/* ===== SHARED CTA BAND ===== */
.cta-band {
    text-align: center;
    background: var(--grey-mid);
    border-top: 1px solid var(--grey-border);
    border-bottom: 1px solid var(--grey-border);
}

.cta-band h2 em {
    color: var(--gold);
    font-style: italic;
}

.cta-band p {
    font-size: 1.05rem;
    color: var(--grey-text);
    max-width: 500px;
    margin: 16px auto 32px;
    line-height: 1.8;
}

/* ===== TEAM PAGE ===== */

/* Alternating section background to separate categories */
.alt-section {
    background: var(--grey-dark);
    border-top: 1px solid var(--grey-border);
    border-bottom: 1px solid var(--grey-border);
}

/* Sticky-ish category jump nav */
.team-category-nav-section {
    padding: 24px 0;
    border-bottom: 1px solid var(--grey-border);
    background: var(--grey-mid);
}

.team-category-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
}

.team-category-nav a {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--grey-text);
    padding: 6px 4px;
    border-bottom: 1px solid transparent;
    transition: color var(--transition), border-color var(--transition);
}

.team-category-nav a:hover,
.team-category-nav a:focus {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* Practitioner grid */
.practitioner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

/* Single-card sections (Hayley, Lorcan, Natasha) center the card */
.practitioner-grid:has(> .practitioner-card:only-child) {
    grid-template-columns: minmax(280px, 480px);
    justify-content: center;
}

/* Two-card sections (Holistic & Massage) use 2 columns */
.practitioner-grid:has(> .practitioner-card:nth-child(2):last-child) {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.practitioner-card {
    background: var(--grey-mid);
    border: 1px solid var(--grey-border);
    overflow: hidden;
    transition: border-color var(--transition), transform var(--transition);
    display: flex;
    flex-direction: column;
    scroll-margin-top: calc(var(--nav-height) + 24px);
}

.practitioner-card:target {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold);
}

.practitioner-card:hover {
    border-color: var(--gold);
}

.practitioner-photo-wrap {
    position: relative;
    overflow: hidden;
}

.practitioner-photo {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
}

.founder-badge,
.onsite-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 12px;
}

.onsite-badge {
    background: var(--black);
    color: var(--gold);
    border: 1px solid var(--gold);
}

.practitioner-body {
    padding: 28px 24px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.practitioner-body h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 6px;
}

.practitioner-role {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.practitioner-bio {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--grey-text);
    margin-bottom: 16px;
}

.practitioner-quals {
    font-size: 0.85rem;
    color: var(--grey-text);
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
}

.practitioner-quals li {
    padding-left: 18px;
    position: relative;
    margin-bottom: 4px;
    line-height: 1.5;
}

.practitioner-quals li::before {
    content: "\2022";
    color: var(--gold);
    position: absolute;
    left: 4px;
    top: 0;
}

.practitioner-onsite {
    font-size: 0.85rem;
    color: var(--white);
    font-style: italic;
    margin-bottom: 18px;
}

.practitioner-contact {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--grey-border);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.practitioner-link {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid transparent;
    align-self: flex-start;
    transition: color var(--transition), border-color var(--transition);
}

.practitioner-link:hover,
.practitioner-link:focus {
    color: var(--gold-light);
    border-bottom-color: var(--gold-light);
}

.practitioner-link-secondary {
    font-size: 0.85rem;
    color: var(--grey-text);
    align-self: flex-start;
    transition: color var(--transition);
    word-break: break-word;
}

.practitioner-link-secondary:hover,
.practitioner-link-secondary:focus {
    color: var(--white);
}

/* ===== PREMIUM PRACTITIONER CARD COMPONENTS (LIVE-style detail) ===== */

/* Services pills */
.services-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.services-pills li {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--gold);
    background: rgba(201, 169, 98, 0.08);
    border: 1px solid var(--grey-border);
    padding: 6px 12px;
    border-radius: 2px;
}

/* Practitioner meta lines (years, hours) */
.practitioner-meta {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.practitioner-meta li {
    font-size: 0.85rem;
    color: var(--white);
    line-height: 1.5;
}

.meta-icon {
    color: var(--gold);
    margin-right: 8px;
    display: inline-block;
    width: 16px;
}

/* Testimonial block */
.practitioner-testimonial {
    background: rgba(201, 169, 98, 0.06);
    border-left: 2px solid var(--gold);
    padding: 14px 16px;
    margin: 0 0 18px;
}

.testimonial-label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 600;
}

.practitioner-testimonial p:last-child {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--grey-text);
    font-style: italic;
}

/* Contact block */
.practitioner-contact {
    margin: 0 0 16px;
    padding-top: 14px;
    border-top: 1px solid var(--grey-border);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
    font-weight: 600;
}

.practitioner-contact a {
    font-size: 0.92rem;
    color: var(--white);
    transition: color var(--transition);
    word-break: break-word;
}

.practitioner-contact a:hover,
.practitioner-contact a:focus {
    color: var(--gold);
}

/* Book Appointment button */
.book-btn {
    display: block;
    text-align: center;
    background: var(--gold);
    color: var(--black);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 14px 20px;
    margin: 0 0 18px;
    border: 1px solid var(--gold);
    transition: background var(--transition), color var(--transition);
}

.book-btn:hover,
.book-btn:focus {
    background: var(--gold-light);
    color: var(--black);
}

/* Social row */
.practitioner-socials {
    display: flex;
    gap: 14px;
    justify-content: center;
    padding-top: 16px;
    border-top: 1px solid var(--grey-border);
}

.practitioner-socials a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--grey-border);
    border-radius: 50%;
    transition: border-color var(--transition), background var(--transition);
}

.practitioner-socials svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
}

.practitioner-socials a:hover,
.practitioner-socials a:focus {
    border-color: var(--gold);
    background: rgba(201, 169, 98, 0.08);
}

/* Override grid: now cards are richer, default to 2 col on wide screens for readability */
@media (min-width: 901px) {
    .practitioner-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}

/* ===== BOOKING / CONTACT PAGE ===== */

.booking-hero {
    position: relative;
    padding: 120px 24px 80px;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid var(--grey-border);
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/about-photo-02.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(40%) contrast(0.95);
    z-index: 0;
}

.booking-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.92) 0%, rgba(26, 26, 26, 0.85) 50%, rgba(13, 13, 13, 0.95) 100%);
    z-index: 1;
}

.booking-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.arched-headline {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 0 auto 16px;
    display: block;
    overflow: visible;
}

.arched-text {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 500;
    fill: var(--gold);
    letter-spacing: 0.04em;
}

@media (max-width: 600px) {
    .arched-text {
        font-size: 38px;
    }
}

.booking-hero-logo {
    width: 220px;
    height: auto;
    margin: 24px auto 18px;
    display: block;
    opacity: 0.95;
}

.booking-hero-subhead {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--white);
    font-weight: 300;
    margin: 0;
}

.booking-hero-subhead em {
    color: var(--gold);
    font-style: italic;
}

/* Booking section layout */
.booking-section {
    padding: 80px 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: start;
}

.booking-form-wrap {
    background: var(--grey-mid);
    border: 1px solid var(--grey-border);
    padding: 40px;
}

.booking-form-intro {
    color: var(--grey-text);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--grey-border);
}

/* Form rows */
.booking-form .form-row {
    margin-bottom: 22px;
}

.booking-form .form-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.booking-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--white);
    margin-bottom: 8px;
}

.booking-form .req {
    color: var(--gold);
    font-weight: 600;
}

.booking-form .opt {
    color: var(--grey-text);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form input[type="date"],
.booking-form input[type="time"],
.booking-form select,
.booking-form textarea {
    width: 100%;
    background: var(--grey-dark);
    border: 1px solid var(--grey-border);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 14px 16px;
    transition: border-color var(--transition), background var(--transition);
    border-radius: 0;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--black);
}

.booking-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C9A962' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.booking-form select.prefilled {
    border-color: var(--gold);
    background-color: rgba(201, 169, 98, 0.08);
}

.booking-form textarea {
    resize: vertical;
    min-height: 110px;
    font-family: var(--font-body);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: rgba(160, 160, 160, 0.6);
}

/* Date/time pickers — make calendar icon visible on dark */
.booking-form input[type="date"]::-webkit-calendar-picker-indicator,
.booking-form input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(0.8) sepia(1) saturate(3) hue-rotate(15deg);
    cursor: pointer;
}

.booking-note {
    font-size: 0.85rem;
    color: var(--grey-text);
    line-height: 1.6;
    background: rgba(201, 169, 98, 0.06);
    border-left: 2px solid var(--gold);
    padding: 12px 16px;
    margin: 0 0 22px;
    font-style: italic;
}

/* File upload */
.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0.1px;
    height: 0.1px;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 28px 20px;
    background: var(--grey-dark);
    border: 1px dashed var(--gold);
    color: var(--grey-text);
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition);
    text-align: center;
}

.file-upload-label:hover,
.file-upload input[type="file"]:focus + .file-upload-label {
    background: var(--black);
    border-color: var(--gold-light);
}

.file-upload-icon {
    font-size: 1.6rem;
    color: var(--gold);
}

.file-upload-text {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 500;
}

.file-upload-hint {
    font-size: 0.78rem;
    color: var(--grey-text);
    font-style: italic;
}

/* Checkboxes */
.form-row-checkbox {
    margin-bottom: 16px;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.88rem !important;
    color: var(--grey-text) !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--gold);
}

.checkbox-label a {
    color: var(--gold);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--gold-light);
}

/* Submit button */
.booking-submit {
    width: 100%;
    padding: 18px 24px;
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    margin-top: 12px;
}

/* RIGHT panel — direct contact */
.booking-direct {
    background: var(--grey-mid);
    border: 1px solid var(--grey-border);
    padding: 40px;
    position: sticky;
    top: 100px;
}

.booking-direct h2 {
    margin-bottom: 28px;
}

.booking-direct h2 em {
    color: var(--gold);
    font-style: italic;
}

.contact-direct-phone,
.contact-direct-email {
    display: block;
    background: var(--grey-dark);
    border: 1px solid var(--grey-border);
    padding: 18px 20px;
    margin-bottom: 14px;
    transition: border-color var(--transition), background var(--transition);
}

.contact-direct-phone:hover,
.contact-direct-email:hover {
    border-color: var(--gold);
    background: var(--black);
}

.contact-direct-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-direct-value {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 0.02em;
    word-break: break-word;
}

.contact-direct-block {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--grey-border);
}

.contact-direct-address {
    font-style: normal;
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.contact-direct-link {
    display: inline-block;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid transparent;
    transition: color var(--transition), border-color var(--transition);
}

.contact-direct-link:hover,
.contact-direct-link:focus {
    color: var(--gold-light);
    border-bottom-color: var(--gold-light);
}

/* Opening hours */
.opening-hours {
    list-style: none;
    margin: 0;
    padding: 0;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(201, 169, 98, 0.08);
    font-size: 0.92rem;
    color: var(--white);
}

.opening-hours li:last-child {
    border-bottom: none;
}

.opening-hours li span:first-child {
    color: var(--grey-text);
}

.opening-hours-note {
    font-size: 0.82rem;
    color: var(--grey-text);
    font-style: italic;
    margin-top: 12px;
    line-height: 1.5;
}

/* Map frame */
.contact-map-section {
    padding: 0 0 80px;
}

.map-frame {
    border: 1px solid var(--grey-border);
    overflow: hidden;
    filter: grayscale(20%) contrast(0.9) brightness(0.9);
    transition: filter var(--transition);
}

.map-frame:hover {
    filter: none;
}

/* Thank-you banner */
.thanks-banner {
    background: var(--grey-mid);
    border: 1px solid var(--gold);
    padding: 60px 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thanks-banner h2 em {
    color: var(--gold);
    font-style: italic;
}

.thanks-banner p {
    color: var(--grey-text);
    line-height: 1.7;
    margin-top: 16px;
    font-size: 1rem;
}

/* Honeypot — visually hidden */
.hp-field {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 900px) {
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .booking-direct {
        position: static;
    }

    .arched-text {
        font-size: 40px;
    }

    .booking-hero {
        padding: 100px 24px 60px;
        min-height: 380px;
    }

    .booking-form-wrap,
    .booking-direct {
        padding: 28px;
    }
}

@media (max-width: 600px) {
    .booking-form .form-row-split {
        grid-template-columns: 1fr;
    }

    .arched-text {
        font-size: 36px;
    }

    .booking-hero-subhead {
        font-size: 1.3rem;
    }

    .booking-hero-logo {
        width: 160px;
    }
}

/* ===== SUNBED PAGE ===== */
.sunbed-hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
    border-bottom: 1px solid var(--grey-border);
}

.sunbed-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/sunbed-modern.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(20%) contrast(1.05);
    z-index: 0;
}

.sunbed-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.92) 0%, rgba(26, 26, 26, 0.78) 60%, rgba(13, 13, 13, 0.95) 100%);
    z-index: 1;
}

.sunbed-hero-inner {
    position: relative;
    z-index: 2;
}

.sunbed-hero-inner h1 em {
    color: var(--gold);
    font-style: italic;
}

/* Experience features */
.sunbed-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.sunbed-feature {
    background: var(--grey-mid);
    border: 1px solid var(--grey-border);
    padding: 36px 28px;
    text-align: center;
    transition: border-color var(--transition);
}

.sunbed-feature:hover {
    border-color: var(--gold);
}

.sunbed-feature-icon {
    font-size: 2.6rem;
    color: var(--gold);
    margin-bottom: 18px;
    line-height: 1;
}

.sunbed-feature h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 14px;
}

.sunbed-feature p {
    color: var(--grey-text);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Pricing placeholder */
.sunbed-pricing {
    text-align: center;
}

.pricing-placeholder {
    max-width: 460px;
    margin: 40px auto 0;
    background: var(--grey-mid);
    border: 1px solid var(--gold);
    padding: 36px 28px;
    text-align: center;
}

.pricing-placeholder-label {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 14px;
}

.pricing-placeholder-value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.pricing-placeholder-note {
    font-size: 0.92rem;
    color: var(--grey-text);
    line-height: 1.6;
    font-style: italic;
}

/* Guidelines */
.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.guideline-card {
    background: var(--grey-mid);
    border: 1px solid var(--grey-border);
    padding: 32px 28px;
    position: relative;
    transition: border-color var(--transition);
}

.guideline-card:hover {
    border-color: var(--gold);
}

.guideline-step {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
    opacity: 0.6;
}

.guideline-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 12px;
}

.guideline-card p {
    color: var(--grey-text);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Sunbed responsive */
@media (max-width: 900px) {
    .sunbed-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .guidelines-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .sunbed-hero {
        padding: 120px 0 60px;
    }
}

/* ===== PRODUCTS PAGE ===== */

/* Brand spotlight twin */
.brand-spotlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.brand-spotlight-card {
    background: var(--grey-mid);
    border: 1px solid var(--grey-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color var(--transition);
}

.brand-spotlight-card:hover {
    border-color: var(--gold);
}

.brand-spotlight-photo-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.brand-spotlight-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.brand-new-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 6px 14px;
}

.brand-spotlight-body {
    padding: 32px 32px 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.brand-spotlight-tag {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
}

.brand-spotlight-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.brand-spotlight-tagline {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 18px;
}

.brand-spotlight-body > p:not(.brand-spotlight-tag):not(.brand-spotlight-tagline) {
    color: var(--grey-text);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.brand-spotlight-link {
    margin-top: auto;
    align-self: flex-start;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid transparent;
    padding-bottom: 4px;
    transition: color var(--transition), border-color var(--transition);
}

.brand-spotlight-link:hover,
.brand-spotlight-link:focus {
    color: var(--gold-light);
    border-bottom-color: var(--gold-light);
}

/* Product grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.product-card {
    background: var(--grey-mid);
    border: 1px solid var(--grey-border);
    padding: 28px 24px;
    text-align: left;
    transition: border-color var(--transition), transform var(--transition);
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.product-card:hover {
    border-color: var(--gold);
}

.product-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    line-height: 1.3;
}

.product-meta {
    font-size: 0.82rem;
    color: var(--grey-text);
    font-style: italic;
    margin-bottom: 8px;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 500;
    margin-top: auto;
}

/* Coming Soon */
.coming-soon-section {
    padding: 100px 0;
}

.coming-soon-card {
    max-width: 720px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--grey-mid) 0%, var(--grey-dark) 100%);
    border: 1px solid var(--gold);
    padding: 64px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.coming-soon-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, transparent, var(--gold), transparent);
    z-index: -1;
    opacity: 0.4;
}

.coming-soon-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 8px 18px;
    margin-bottom: 24px;
}

.coming-soon-card h2 {
    margin-bottom: 16px;
}

.coming-soon-card h2 em {
    color: var(--gold);
    font-style: italic;
}

.coming-soon-card p {
    color: var(--grey-text);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto;
}

/* In-salon section */
.in-salon-section h2 em {
    color: var(--gold);
    font-style: italic;
}

/* Products responsive */
@media (max-width: 900px) {
    .brand-spotlight-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .coming-soon-card {
        padding: 48px 28px;
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .brand-spotlight-body {
        padding: 28px 24px 32px;
    }

    .brand-spotlight-card h3 {
        font-size: 1.6rem;
    }
}

/* Footer credit link */
.footer-credit {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: color var(--transition), border-color var(--transition);
}

.footer-credit:hover,
.footer-credit:focus {
    color: var(--gold-light);
    border-bottom-color: var(--gold-light);
}

/* Team page responsive */
@media (max-width: 900px) {
    .practitioner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .practitioner-grid:has(> .practitioner-card:only-child) {
        grid-template-columns: minmax(260px, 460px);
    }
}

@media (max-width: 600px) {
    .practitioner-grid,
    .practitioner-grid:has(> .practitioner-card:nth-child(2):last-child),
    .practitioner-grid:has(> .practitioner-card:only-child) {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
    }

    .team-category-nav {
        gap: 6px 16px;
    }

    .team-category-nav a {
        font-size: 0.72rem;
    }
}

/* ===== ACCESSIBILITY ===== */
/* Skip link: hidden until focused via keyboard */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--gold);
    color: var(--black);
    padding: 14px 22px;
    z-index: 10000;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 0 0 6px 0;
    transition: top 0.2s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
    top: 0;
    outline: 2px solid var(--gold-light, #d4bb7c);
    outline-offset: 0;
}

/* Visually hidden but available to screen readers */
.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;
}
