@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --dark: #2B1B17;
    --gold: #C6A77D;
    --gold-dark: #B89567;
    --gold-soft: #F3E8D7;
    --beige: #F7F3EE;
    --cream: #FCF8F3;
    --soft: #FCF8F3;
    --pink: #EFE7DD;
    --purple: #C6A77D;
    --white: #ffffff;
    --text: #4B3A35;
    --muted: #7A6B66;
    --border: rgba(43, 27, 23, 0.12);
    --shadow: 0 24px 70px rgba(43, 27, 23, 0.08);
    --heading: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --body: "Inter", Arial, Helvetica, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body);
    background: var(--beige);
    color: var(--text);
}

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

button,
input,
select,
textarea {
    font-family: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* ==================================================
   BUTTONS
================================================== */

.btn,
.header-btn,
.admin-small-btn,
.admin-action-btn,
.portal-small-btn,
.portal-btn-link,
.portal-logout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn:hover,
.header-btn:hover,
.admin-small-btn:hover,
.admin-action-btn:hover,
.portal-small-btn:hover,
.portal-btn-link:hover,
.portal-logout-btn:hover {
    transform: translateY(-1px);
}

.btn-dark {
    background: var(--dark);
    color: #fff;
}

.btn-light,
.header-btn-light {
    background: #fff;
    color: var(--dark);
    border: 1px solid var(--border);
    box-shadow: none;
}

.header-btn-light:hover,
.btn-light:hover {
    background: var(--soft);
}

/* ==================================================
   MAIN WEBSITE HEADER + DROPDOWN
================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.site-topbar {
    background: var(--dark);
    color: #fff;
    font-size: 13px;
}

.site-topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.site-topbar-left,
.site-topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-topbar a,
.site-topbar span {
    color: rgba(255, 255, 255, 0.76);
}

.site-topbar a:hover {
    color: #fff;
}

.topbar-portal-link {
    min-height: 30px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: inline-flex;
    align-items: center;
    font-weight: 700;
}

.header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.logo span {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--dark));
    color: #fff;
    display: grid;
    place-items: center;
    font-family: var(--heading);
    font-weight: 700;
}

.logo strong {
    display: block;
    color: var(--dark);
    font-size: 20px;
    line-height: 1;
}

.logo small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav>a,
.nav-dropdown-toggle {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    transition: 0.2s ease;
}

.main-nav>a:hover,
.main-nav>a.active,
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown-toggle.active {
    background: var(--soft);
    color: var(--dark);
}

.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown::after {
    content: "";
    position: absolute;
    left: -20px;
    right: -20px;
    top: 100%;
    height: 18px;
}

.nav-dropdown-toggle {
    gap: 6px;
}

.nav-dropdown-toggle span {
    font-size: 13px;
    opacity: 0.75;
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle span,
.nav-dropdown:focus-within .nav-dropdown-toggle span {
    transform: rotate(180deg);
}

.nav-dropdown.is-open .nav-dropdown-toggle span {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);

    width: 380px;
    padding: 18px;

    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: 0 28px 80px rgba(43, 27, 23, 0.16);

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: 0.18s ease;
    z-index: 9999;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    min-height: 48px;
    padding: 0 14px;
    border-radius: 16px;

    display: flex;
    align-items: center;

    background: var(--soft);
    color: var(--text);

    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
}

.nav-dropdown-menu a:hover {
    background: var(--gold-soft);
    color: var(--dark);
}

.nav-dropdown-all {
    grid-column: 1 / -1;
    margin-top: 4px;
    background: linear-gradient(135deg, var(--dark), #4A2A22) !important;
    color: #fff !important;
    justify-content: center;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 12px;
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 16px;
    background: rgba(198, 167, 125, 0.16);
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 999px;
    transition: 0.25s ease;
}

.mobile-book-btn,
.mobile-treatment-btn,
.mobile-portal-link {
    display: none !important;
}


/* ==================================================
   FOOTER
================================================== */

.site-footer {
    background:
        radial-gradient(circle at 18% 0%, rgba(198, 167, 125, 0.14), transparent 30%),
        linear-gradient(180deg, #2B1B17 0%, #1F120F 100%);
    color: #fff;
    padding: 80px 0 28px;
}

.footer-top,
.footer-main,
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 0.85fr 0.8fr;
    gap: 54px;
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.footer-logo span {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--gold), #fff);
    color: var(--dark);
    display: grid;
    place-items: center;
    font-family: var(--heading);
    font-weight: 700;
}

.footer-logo strong,
.site-footer h3,
.site-footer h4 {
    color: #fff;
    font-family: var(--heading);
}

.footer-logo strong {
    display: block;
    font-size: 22px;
}

.footer-logo small {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
}

.footer-brand-block p,
.footer-brand p,
.site-footer p,
.site-footer a,
.site-footer span {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.8;
}

.footer-brand-block p,
.footer-brand p {
    max-width: 430px;
    margin-bottom: 18px;
}

.footer-email {
    color: var(--gold) !important;
    font-weight: 800;
}

.footer-col h4 {
    font-size: 27px;
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 24px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
}

/* ==================================================
   ADMIN CRM
================================================== */

.admin-login-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 15% 20%, rgba(198, 167, 125, 0.24), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, var(--pink) 100%);
    padding: 24px;
}

.admin-login-box {
    width: 100%;
    max-width: 460px;
    padding: 42px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.admin-login-box h1,
.admin-panel h2,
.portal-empty-card h3,
.admin-booking-card h2 {
    font-family: var(--heading);
    color: var(--dark);
}

.admin-login-box h1 {
    font-size: 42px;
    margin-bottom: 8px;
}

.admin-login-box p {
    color: var(--muted);
    margin-bottom: 28px;
}

.admin-login-box label,
.admin-form label {
    display: block;
    margin: 18px 0 8px;
    font-weight: 700;
    color: var(--dark);
}

.admin-login-box input,
.admin-form input,
.admin-form textarea,
.admin-form select,
.inline-admin-form select,
.admin-booking-filters input,
.admin-booking-filters select {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 15px;
    background: #fff;
}

.admin-login-box .btn {
    margin-top: 22px;
    width: 100%;
}

.admin-header {
    position: sticky;
    top: 0;
    z-index: 999;
    min-height: 76px;
    padding: 0 34px;
    background: var(--dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-header strong {
    display: block;
    font-size: 18px;
}

.admin-header span {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
}

.admin-header nav,
.admin-header .admin-nav {
    display: flex;
    gap: 16px;
}

.admin-header nav a,
.admin-header .admin-nav a {
    color: rgba(255, 255, 255, 0.78);
}

.admin-header nav a:hover,
.admin-header .admin-nav a:hover {
    color: #fff;
}

.admin-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.admin-menu-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    transition: 0.25s ease;
}

.admin-main {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 60px 0;
}

.admin-heading {
    margin-bottom: 32px;
}

.admin-heading h1 {
    margin: 12px 0;
}

.admin-stat-grid,
.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 34px;
}

.admin-form-grid {
    grid-template-columns: repeat(3, 1fr);
}

.admin-stat,
.admin-stat-card,
.admin-panel,
.admin-booking-card,
.admin-date-row {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 14px 50px rgba(43, 27, 23, 0.05);
}

.admin-stat,
.admin-stat-card {
    padding: 28px;
}

.admin-stat span,
.admin-stat-card span {
    display: block;
    color: var(--muted);
    margin-bottom: 10px;
}

.admin-stat strong,
.admin-stat-card strong {
    font-size: 38px;
    color: var(--dark);
}

.admin-panel {
    padding: 30px;
    margin-bottom: 28px;
}

.admin-panel h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.alert {
    padding: 16px 18px;
    border-radius: 14px;
    margin-bottom: 22px;
    font-weight: 700;
}

.alert.success {
    background: #e9f8ee;
    color: #1e6b38;
}

.alert.error {
    background: #fdeaea;
    color: #9d1c1c;
}

.alert.warning {
    background: #fff6e5;
    color: #8a5a00;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border);
    text-align: left;
}

.admin-table th {
    color: var(--dark);
}

.admin-table td {
    color: var(--muted);
}

.admin-actions,
.admin-action-row,
.admin-booking-actions,
.admin-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.admin-actions,
.admin-action-row,
.admin-booking-actions {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(43, 27, 23, 0.08);
}

.admin-actions form,
.admin-action-row form,
.admin-booking-actions form {
    margin: 0;
}

.admin-small-btn.success,
.admin-action-btn--green {
    background: #1e6b38;
}

.admin-small-btn.danger,
.admin-action-btn--red {
    background: #b42318;
}

.admin-action-btn--light {
    background: #fff;
    color: var(--dark);
    border: 1px solid var(--border);
}

.inline-admin-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.inline-admin-form select {
    min-height: 38px;
    border-radius: 999px;
    padding: 0 12px;
}

.status-pill,
.admin-status-pill,
.admin-booking-ref,
.admin-ref {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    background: var(--gold-soft);
    color: var(--gold-dark);
}

.status-pending_deposit {
    background: #fff3d8;
    color: #8a5a00;
}

.status-deposit_paid,
.status-fully_paid,
.admin-status-fully_paid {
    background: #e9f8ee;
    color: #1e6b38;
}

.status-balance_paid {
    background: #e7f0ff;
    color: #234d9b;
}

.status-cancelled,
.admin-status-cancelled {
    background: #fdeaea;
    color: #9d1c1c;
}

.admin-booking-list,
.admin-card-list,
.admin-date-booking-list {
    display: grid;
    gap: 24px;
}

.admin-booking-card {
    padding: 34px;
    border-radius: 30px;
}

.admin-booking-card-top,
.admin-card-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 26px;
}

.admin-booking-card h2 {
    margin: 0 0 8px;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1;
}

.admin-booking-card p,
.admin-card-head p {
    margin: 0;
    color: var(--muted);
}

.admin-booking-info-grid,
.admin-detail-grid,
.admin-payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.admin-booking-info-grid div,
.admin-detail-grid div,
.admin-payment-grid div {
    padding: 18px;
    border-radius: 18px;
    background: var(--soft);
    border: 1px solid rgba(43, 27, 23, 0.07);
}

.admin-booking-info-grid span,
.admin-detail-grid span,
.admin-payment-grid span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.admin-booking-info-grid strong,
.admin-detail-grid strong,
.admin-payment-grid strong {
    display: block;
    color: var(--dark);
    line-height: 1.4;
}

.admin-booking-filters {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 14px;
    align-items: end;
    padding: 22px;
    margin-bottom: 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
}

.admin-booking-filters label {
    display: block;
    color: var(--dark);
    font-weight: 800;
    margin-bottom: 8px;
}

.admin-booking-filter-actions {
    display: flex;
    gap: 10px;
}

/* ==================================================
   CUSTOMER PORTAL
================================================== */

.portal-dashboard-page,
.portal-area {
    background: var(--soft);
    min-height: 100vh;
}

.portal-wrap {
    width: min(100% - 48px, 1180px);
    margin: 0 auto;
}

.portal-dashboard-hero {
    padding: 80px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(198, 167, 125, 0.20), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, var(--soft) 100%);
}

.portal-dashboard-hero .portal-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.portal-dashboard-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 28px;
}

.portal-dashboard-heading h2 {
    margin: 0;
    font-size: 48px;
    line-height: 1;
}

.portal-dashboard-section {
    padding: 70px 0 100px;
}

.portal-alert {
    margin-bottom: 24px;
    padding: 16px 18px;
    border-radius: 18px;
    font-weight: 800;
}

.portal-alert-success {
    background: #e8f8ee;
    color: #1e6b38;
}

.portal-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 42px;
}

.portal-stat-card,
.portal-empty-card,
.portal-booking-card {
    background: #fff;
    border: 1px solid rgba(43, 27, 23, 0.11);
    box-shadow: 0 22px 60px rgba(43, 27, 23, 0.08);
}

.portal-stat-card {
    padding: 26px;
    border-radius: 26px;
}

.portal-stat-card span {
    display: block;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.portal-stat-card strong {
    color: var(--dark);
    font-size: 34px;
}

.portal-empty-card,
.portal-booking-card {
    padding: 34px;
    border-radius: 30px;
}

.portal-empty-card h3,
.portal-booking-card h3 {
    margin: 0 0 12px;
    color: var(--dark);
    font-family: var(--heading);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1;
}

.portal-empty-card p {
    color: var(--muted);
    line-height: 1.7;
}

.portal-booking-grid {
    display: grid;
    gap: 24px;
}

.portal-booking-card-top {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: flex-start;
    margin-bottom: 26px;
}

.portal-booking-ref,
.portal-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--gold-soft);
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.portal-booking-ref {
    margin-bottom: 12px;
}

.portal-status--cancelled,
.portal-status--cancel_requested {
    background: #fdeaea;
    color: #b42318;
}

.portal-status--fully_paid {
    background: #e9f8ee;
    color: #1e6b38;
}

.portal-status--deposit_paid {
    background: #fff6e5;
    color: #8a5a00;
}

.portal-booking-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.portal-booking-details div {
    padding: 18px;
    border-radius: 20px;
    background: var(--soft);
    border: 1px solid rgba(43, 27, 23, 0.08);
}

.portal-booking-details span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.portal-booking-details strong {
    display: block;
    color: var(--dark);
    line-height: 1.4;
    text-transform: capitalize;
}

.portal-booking-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid rgba(43, 27, 23, 0.10);
}

.portal-payment-note {
    padding: 14px 18px;
    border-radius: 16px;
    background: #fff6e5;
    color: #8a5a00;
    font-weight: 800;
    line-height: 1.5;
}

.portal-payment-note-success {
    background: #e9f8ee;
    color: #1e6b38;
}

.portal-payment-note-danger,
.portal-danger-btn {
    background: #fdeaea;
    color: #b42318;
}

.portal-danger-btn {
    min-height: 48px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    background: #b42318;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

/* Portal header/footer */

.portal-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.portal-header-inner {
    width: min(1180px, calc(100% - 40px));
    min-height: 84px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.portal-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.portal-brand span {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--dark));
    color: #fff;
    display: grid;
    place-items: center;
    font-family: var(--heading);
    font-weight: 700;
}

.portal-brand strong {
    display: block;
    color: var(--dark);
    font-size: 18px;
}

.portal-brand small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 13px;
}

.portal-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.portal-nav a {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    color: var(--text);
    font-weight: 700;
}

.portal-nav a:hover {
    background: var(--soft);
    color: var(--gold-dark);
}

.portal-nav a:last-child {
    background: var(--dark);
    color: #fff;
}

.portal-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 16px;
    background: var(--soft);
    cursor: pointer;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.portal-menu-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--dark);
    transition: 0.25s ease;
}

.portal-footer {
    background: var(--dark);
    color: #fff;
    padding: 32px 0;
}

.portal-footer-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.portal-footer p,
.portal-footer a {
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

/* ==================================================
   POLICY PAGES + COOKIE BANNER
================================================== */

.policy-page {
    background: var(--beige);
}

.policy-hero {
    padding: 95px 0 70px;
    background:
        radial-gradient(circle at 18% 20%, rgba(198, 167, 125, 0.22), transparent 32%),
        linear-gradient(135deg, #fff 0%, var(--cream) 100%);
}

.policy-hero span {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.policy-hero h1 {
    max-width: 850px;
    color: var(--dark);
    font-family: var(--heading);
    font-size: clamp(48px, 6vw, 82px);
    line-height: 0.95;
}

.policy-hero p {
    max-width: 700px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.policy-section {
    padding: 70px 0 100px;
}

.policy-card {
    max-width: 940px;
    padding: 46px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.policy-card h2 {
    margin: 34px 0 12px;
    color: var(--dark);
    font-family: var(--heading);
    font-size: 34px;
    line-height: 1;
}

.policy-card h2:first-child {
    margin-top: 0;
}

.policy-card p,
.policy-card li {
    color: var(--muted);
    line-height: 1.8;
}

.policy-card ul {
    margin: 14px 0 22px 22px;
}

.policy-card a {
    color: var(--gold-dark);
    font-weight: 800;
}

.policy-updated {
    display: inline-flex;
    margin-top: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--gold-soft);
    color: var(--gold-dark) !important;
    font-size: 13px !important;
    font-weight: 800;
}

.cookie-settings-btn {
    min-height: 46px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    max-width: 920px;
    margin: 0 auto;
    padding: 24px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border);
    box-shadow: 0 24px 70px rgba(43, 27, 23, 0.14);
    display: none;
    gap: 26px;
    align-items: center;
    justify-content: space-between;
}

.cookie-banner.active {
    display: flex;
}

.cookie-banner strong {
    display: block;
    color: var(--dark);
    font-size: 21px;
    margin-bottom: 8px;
}

.cookie-banner p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    max-width: 520px;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-actions button,
.cookie-actions a {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--dark);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    cursor: pointer;
}

.cookie-actions button:first-child {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    border: 0;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1180px) {
    .header-inner {
        gap: 18px;
    }

    .main-nav>a,
    .nav-dropdown-toggle {
        padding: 0 10px;
        font-size: 13px;
    }

    .header-btn {
        padding: 0 16px;
        font-size: 12px;
    }
}

@media (max-width: 980px) {

    .site-topbar-inner {
        display: none !important;
    }

    .header-inner {
        min-height: 78px;
        position: relative;
    }

    .logo small,
    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 16px;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 24px;
        box-shadow: var(--shadow);
        z-index: 999;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav>a,
    .nav-dropdown-toggle {
        width: 100%;
        justify-content: center;
        background: var(--soft);
        min-height: 48px;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 8px;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        background: var(--soft);
        border-radius: 18px;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        transform: none;
    }

    .mobile-book-btn,
    .mobile-treatment-btn,
    .mobile-portal-link {
        display: flex !important;
        justify-content: center;
    }

    .mobile-book-btn {
        background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
        color: #fff !important;
    }

    .mobile-treatment-btn,
    .mobile-portal-link {
        background: #fff !important;
        border: 1px solid var(--border);
        color: var(--dark) !important;
    }

    .mobile-menu-toggle.active span:nth-child(1),
    .admin-menu-toggle.active span:nth-child(1),
    .portal-menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

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

    .mobile-menu-toggle.active span:nth-child(3),
    .admin-menu-toggle.active span:nth-child(3),
    .portal-menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-grid,
    .intro-grid,
    .footer-top,
    .footer-main,
    .footer-grid,
    .card-grid,
    .course-grid,
    .contact-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .portal-stat-grid,
    .portal-booking-details,
    .admin-booking-info-grid,
    .admin-detail-grid,
    .admin-payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-stat-grid,
    .admin-form-grid {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 760px) {

    .container,
    .admin-main,
    .portal-wrap {
        width: calc(100% - 28px);
    }

    .hero,
    .page-hero,
    .portal-dashboard-hero {
        padding: 60px 0;
        min-height: auto;
    }

    .hero-card {
        min-height: 420px;
    }

    .services,
    .course-section,
    .gallery-section,
    .contact-section,
    .portal-dashboard-section,
    .policy-section {
        padding: 55px 0 75px;
    }

    .portal-dashboard-hero .portal-wrap,
    .portal-dashboard-heading,
    .portal-booking-card-top,
    .admin-booking-card-top,
    .admin-card-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .portal-stat-grid,
    .portal-booking-details,
    .admin-booking-info-grid,
    .admin-detail-grid,
    .admin-payment-grid,
    .admin-stat-grid,
    .admin-form-grid {
        grid-template-columns: 1fr;
    }

    .portal-empty-card,
    .portal-booking-card,
    .admin-booking-card,
    .admin-panel,
    .policy-card {
        padding: 24px;
        border-radius: 24px;
    }

    .portal-booking-actions,
    .admin-booking-actions,
    .admin-action-row,
    .admin-actions,
    .admin-booking-filter-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .portal-booking-actions form,
    .admin-booking-actions form,
    .admin-action-row form,
    .portal-small-btn,
    .portal-btn-link,
    .portal-logout-btn,
    .portal-danger-btn,
    .admin-action-btn,
    .admin-small-btn,
    .btn {
        width: 100%;
    }

    .admin-header {
        min-height: 72px;
        padding: 14px 18px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
    }

    .admin-menu-toggle {
        display: flex;
        flex-shrink: 0;
    }

    .admin-header .admin-nav,
    .admin-header nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 12px;
        right: 12px;
        display: none;
        flex-direction: column;
        gap: 8px;
        padding: 14px;
        background: var(--dark);
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(43, 27, 23, 0.22);
    }

    .admin-header .admin-nav.active,
    .admin-header nav.active {
        display: flex;
    }

    .admin-header .admin-nav a,
    .admin-header nav a {
        display: block;
        width: 100%;
        padding: 14px 16px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
    }

    .portal-header-inner {
        min-height: 76px;
    }

    .portal-brand small {
        display: none;
    }

    .portal-menu-toggle {
        display: flex;
    }

    .portal-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 12px;
        right: 12px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 22px;
        box-shadow: var(--shadow);
    }

    .portal-nav.active {
        display: flex;
    }

    .portal-nav a {
        width: 100%;
        justify-content: center;
        background: var(--soft);
    }

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

    .cookie-banner {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 18px;
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner p {
        max-width: 100%;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-actions button,
    .cookie-actions a {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .logo strong {
        font-size: 17px;
    }

    .logo span {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 980px) {
    .nav-dropdown-menu {
        display: none;
    }

    .nav-dropdown.is-open .nav-dropdown-menu {
        display: grid;
    }
}

/* ==================================================
   MOBILE TREATMENTS DROPDOWN FIX
================================================== */

@media (max-width: 980px) {
    .nav-dropdown {
        width: 100% !important;
        display: block !important;
    }

    .nav-dropdown::after {
        display: none !important;
    }

    .nav-dropdown-toggle {
        width: 100% !important;
        justify-content: center !important;
    }

    .nav-dropdown-menu {
        position: static !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;

        display: none !important;
        width: 100% !important;
        margin-top: 8px;
        padding: 10px !important;

        grid-template-columns: 1fr !important;
        background: var(--soft);
        box-shadow: none;
    }

    .nav-dropdown.is-open .nav-dropdown-menu {
        display: grid !important;
    }

    .nav-dropdown-menu a {
        width: 100%;
        min-height: 46px;
        justify-content: center;
        text-align: center;
        white-space: normal;
        background: #fff;
    }
}

/* ==================================================
   ERROR PAGES - 404 / 403
================================================== */

.error-page {
    min-height: 720px;
    padding: 110px 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(198, 167, 125, 0.24), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, var(--pink) 100%);
    display: flex;
    align-items: center;
}

.error-page-inner {
    text-align: center;
}

.error-code {
    margin-bottom: 18px;
    font-family: var(--heading);
    font-size: clamp(96px, 16vw, 190px);
    line-height: 0.8;
    color: var(--dark);
    letter-spacing: -0.08em;
}

.error-page h1 {
    max-width: 850px;
    margin: 0 auto;
    font-family: var(--heading);
    font-size: clamp(44px, 6vw, 82px);
    line-height: 0.95;
    letter-spacing: -0.05em;
    color: var(--dark);
}

.error-page p {
    max-width: 720px;
    margin: 24px auto 0;
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
}

.error-actions {
    margin-top: 36px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.error-help-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
}

.error-help-card {
    min-height: 260px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(198, 167, 125, 0.18), transparent 40%),
        var(--soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.25s ease;
}

.error-help-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.error-help-card span {
    color: var(--gold-dark);
    letter-spacing: 0.16em;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.error-help-card h2 {
    margin-top: 18px;
    font-family: var(--heading);
    font-size: 34px;
    line-height: 1;
    color: var(--dark);
}

.error-help-card p {
    margin: 18px 0 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
}

@media (max-width: 980px) {
    .error-help-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .error-page {
        min-height: auto;
        padding: 70px 0;
    }

    .error-actions {
        flex-direction: column;
    }

    .error-actions .btn {
        width: 100%;
    }

    .error-help-card {
        min-height: auto;
    }
}

/* ==================================================
   TREATMENTS LANDING + TREATMENT DETAIL PAGES
   Add to bottom of /assets/css/style.css
================================================== */

.treatments-page,
.treatment-detail-page {
    background: var(--beige);
}

.treatments-hero,
.treatment-detail-hero {
    padding: 105px 0;
    background:
        radial-gradient(circle at 16% 20%, rgba(198, 167, 125, 0.22), transparent 30%),
        linear-gradient(135deg, #fff 0%, var(--cream) 100%);
}

.treatments-hero-grid,
.treatment-detail-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

.treatments-hero h1,
.treatment-detail-hero h1,
.treatments-trust h2,
.treatment-content-card h2,
.treatment-price-card h2,
.treatment-faq-section h2 {
    font-family: var(--heading);
    color: var(--dark);
    letter-spacing: -0.05em;
}

.treatments-hero h1,
.treatment-detail-hero h1 {
    max-width: 820px;
    font-size: clamp(52px, 6vw, 88px);
    line-height: 0.92;
}

.treatments-hero p,
.treatment-detail-hero p {
    max-width: 700px;
    margin-top: 24px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.treatments-hero-card,
.treatment-summary-card {
    min-height: 440px;
    padding: 42px;
    border-radius: 240px 240px 34px 34px;
    background:
        linear-gradient(rgba(43, 27, 23, 0.12), rgba(43, 27, 23, 0.42)),
        var(--gold);
    color: #fff;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.treatments-hero-card span,
.treatment-summary-card span {
    color: rgba(255, 255, 255, 0.78);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
}

.treatments-hero-card h2,
.treatment-summary-card h2 {
    margin-top: 16px;
    color: #fff;
    font-family: var(--heading);
    font-size: 44px;
    line-height: 1;
}

.treatments-hero-card p,
.treatment-summary-card p {
    color: rgba(255, 255, 255, 0.82);
    margin-top: 16px;
}

.treatments-section,
.treatment-detail-section,
.treatment-faq-section,
.treatments-trust {
    padding: 95px 0;
}

.treatment-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.treatment-category-card {
    min-height: 300px;
    padding: 28px;
    border-radius: 30px;
    border: 1px solid var(--border);
    background:
        radial-gradient(circle at top right, rgba(198, 167, 125, 0.18), transparent 42%),
        #fff;
    box-shadow: 0 18px 55px rgba(43, 27, 23, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.22s ease;
}

.treatment-category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.treatment-category-card span {
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.treatment-category-card h3 {
    margin-top: 20px;
    color: var(--dark);
    font-family: var(--heading);
    font-size: 34px;
    line-height: 1;
}

.treatment-category-card p {
    margin-top: 16px;
    color: var(--muted);
    line-height: 1.7;
}

.treatment-category-card strong {
    margin-top: 22px;
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.treatments-trust {
    background: var(--dark);
    color: #fff;
}

.treatments-trust-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
}

.treatments-trust h2 {
    color: #fff;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1;
}

.trust-list {
    display: grid;
    gap: 18px;
}

.trust-list div {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-list strong {
    display: block;
    color: #fff;
    font-size: 19px;
    margin-bottom: 8px;
}

.trust-list p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
}

.treatment-content-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: start;
}

.treatment-content-card,
.treatment-price-card {
    padding: 36px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 18px 55px rgba(43, 27, 23, 0.05);
}

.treatment-content-card h2,
.treatment-price-card h2,
.treatment-faq-section h2 {
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1;
}

.benefit-list {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.benefit-list div {
    padding: 18px;
    border-radius: 18px;
    background: var(--soft);
    border: 1px solid rgba(43, 27, 23, 0.08);
}

.benefit-list strong {
    color: var(--dark);
}

.price-list {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.price-list>div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    border-radius: 18px;
    background: var(--soft);
    border: 1px solid rgba(43, 27, 23, 0.08);
}

.price-list strong {
    display: block;
    color: var(--dark);
}

.price-list span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
}

.price-list b {
    color: var(--gold-dark);
    white-space: nowrap;
}

.price-note {
    margin-top: 18px;
    color: var(--muted);
    line-height: 1.6;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.faq-card {
    padding: 28px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid var(--border);
}

.faq-card h3 {
    color: var(--dark);
    font-size: 19px;
    margin-bottom: 12px;
}

.faq-card p {
    color: var(--muted);
    line-height: 1.7;
}

@media (max-width: 1050px) {
    .treatment-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 760px) {

    .treatments-hero,
    .treatment-detail-hero {
        padding: 62px 0;
    }

    .treatments-hero-grid,
    .treatment-detail-grid,
    .treatments-trust-grid,
    .treatment-content-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .treatments-hero-card,
    .treatment-summary-card {
        min-height: 360px;
        padding: 30px;
    }

    .treatment-category-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .treatments-section,
    .treatment-detail-section,
    .treatment-faq-section,
    .treatments-trust {
        padding: 60px 0;
    }

    .treatment-content-card,
    .treatment-price-card,
    .faq-card {
        padding: 24px;
        border-radius: 24px;
    }

    .price-list>div {
        flex-direction: column;
    }
}

.treatment-grid-section {
    padding: 90px 0;
    background: var(--beige);
}

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.treatment-card {
    min-height: 260px;
    padding: 28px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 18px 50px rgba(43, 27, 23, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.treatment-card span {
    color: var(--gold-dark);
    font-weight: 900;
    letter-spacing: 0.12em;
}

.treatment-card h3 {
    font-family: var(--heading);
    color: var(--dark);
    font-size: 34px;
    line-height: 1;
}

.treatment-card p {
    color: var(--muted);
    line-height: 1.7;
}

.treatment-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.cta-section {
    padding: 90px 0;
    background: var(--pink);
}

.cta-box {
    padding: 46px;
    border-radius: 34px;
    background: var(--dark);
    color: #fff;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}

.cta-box h2 {
    font-family: var(--heading);
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1;
}

.cta-box p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    margin-top: 16px;
}

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

@media (max-width: 980px) {
    .treatment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

    .cta-box {
        padding: 28px;
    }
}

.portal-panel {
    padding: 30px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.portal-panel-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.portal-panel-head h2 {
    margin: 0;
    font-family: var(--heading);
    color: var(--dark);
    font-size: 42px;
    line-height: 1;
}

.portal-form label {
    display: block;
    margin: 18px 0 8px;
    font-weight: 800;
    color: var(--dark);
}

.portal-form input,
.portal-form textarea {
    width: 100%;
    min-height: 54px;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px 16px;
    font-size: 16px;
    outline: none;
    font-family: inherit;
    resize: vertical;
}

.portal-form textarea {
    min-height: 120px;
}

.portal-form input:focus,
.portal-form textarea:focus {
    border-color: rgba(198, 167, 125, 0.55);
    box-shadow: 0 0 0 4px rgba(198, 167, 125, 0.12);
}

.portal-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.portal-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    align-items: start;
}

.portal-dashboard-main,
.portal-dashboard-side {
    display: grid;
    gap: 24px;
}

.portal-side-card {
    padding: 24px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.portal-side-card h3 {
    margin: 0 0 14px;
    color: var(--dark);
}

.portal-side-card p {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.7;
}

.portal-side-nav {
    display: grid;
    gap: 10px;
}

.portal-side-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--muted);
    font-weight: 800;
    border: 1px solid var(--border);
}

.portal-side-nav a:hover {
    background: rgba(198, 167, 125, 0.14);
    color: var(--gold-dark);
}

.portal-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 13px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.portal-pill.success {
    background: #f1fff6;
    color: #236b3c;
    border: 1px solid #bfe8cb;
}

.portal-pill.warning {
    background: #fff8ec;
    color: #8a5b16;
    border: 1px solid #ead4a9;
}

.portal-alert-danger {
    background: #fff3f3;
    border: 1px solid #f1caca;
    color: #8a2d2d;
}

@media (max-width: 900px) {

    .portal-dashboard-grid,
    .portal-form-grid {
        grid-template-columns: 1fr;
    }
}

.portal-pay-btn,
.portal-small-btn,
.portal-btn-link,
.portal-danger-btn,
.portal-logout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    border: 0;
    font-family: inherit;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s ease;
}

.portal-pay-btn,
.portal-btn-link {
    background: var(--dark);
    color: #fff;
}

.portal-pay-btn:hover,
.portal-btn-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(59, 31, 24, 0.18);
}

.portal-small-btn,
.portal-logout-btn {
    background: rgba(198, 167, 125, 0.16);
    color: var(--gold-dark);
    border: 1px solid rgba(198, 167, 125, 0.35);
}

.portal-small-btn:hover,
.portal-logout-btn:hover {
    background: var(--gold);
    color: #fff;
}

.portal-danger-btn {
    background: #fff3f3;
    color: #8a2d2d;
    border: 1px solid #f1caca;
}

.portal-danger-btn:hover {
    background: #8a2d2d;
    color: #fff;
}

.portal-booking-actions form,
.portal-booking-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.portal-form .portal-pay-btn {
    margin-top: 22px;
}

@media (max-width: 640px) {

    .portal-pay-btn,
    .portal-small-btn,
    .portal-btn-link,
    .portal-danger-btn,
    .portal-logout-btn {
        width: 100%;
    }

    .portal-booking-actions form {
        width: 100%;
    }
}

.booking-hero {
    padding: 90px 0 80px;
    background:
        radial-gradient(circle at 15% 20%, rgba(198, 167, 125, 0.18), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, var(--pink) 100%);
}

.booking-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 38px;
}

.booking-steps span,
.booking-steps a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.booking-steps .is-active {
    background: rgba(198, 167, 125, 0.16);
    color: var(--gold-dark);
    border-color: rgba(198, 167, 125, 0.35);
}

.booking-hero h1 {
    max-width: 900px;
    margin: 0;
    font-family: var(--heading);
    color: var(--dark);
    font-size: clamp(52px, 7vw, 92px);
    line-height: 0.94;
    letter-spacing: -0.055em;
}

.booking-hero p {
    max-width: 760px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.8;
}

.course-single-section {
    padding: 80px 0 110px;
    background: #fff;
}

.course-single-layout {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 36px;
    align-items: start;
}

.course-single-main {
    display: grid;
    gap: 24px;
}

.course-info-card,
.course-date-panel {
    padding: 34px;
    border-radius: 34px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.course-info-card h2,
.course-date-panel h2 {
    margin: 0 0 20px;
    font-family: var(--heading);
    color: var(--dark);
    font-size: 42px;
    line-height: 1;
}

.course-copy {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.9;
}

.booking-process-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.booking-process-list div {
    padding: 20px;
    border-radius: 22px;
    background: var(--soft);
    border: 1px solid var(--border);
}

.booking-process-list strong {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(198, 167, 125, 0.16);
    color: var(--gold-dark);
    margin-bottom: 14px;
}

.booking-process-list p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.course-date-panel {
    position: sticky;
    top: 110px;
    background:
        radial-gradient(circle at top right, rgba(198, 167, 125, 0.12), transparent 38%),
        var(--soft);
}

.course-price-box {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.course-price-box div {
    padding: 18px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.course-price-box span {
    color: var(--muted);
    font-size: 14px;
}

.course-price-box strong {
    color: var(--dark);
    text-align: right;
}

.course-date-list {
    display: grid;
    gap: 14px;
}

.course-date-card {
    display: grid;
    grid-template-columns: 1fr 52px;
    gap: 16px;
    align-items: center;
    padding: 20px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--border);
    color: inherit;
    text-decoration: none;
    transition: 0.25s ease;
}

.course-date-card:hover {
    transform: translateY(-3px);
    border-color: rgba(198, 167, 125, 0.45);
    box-shadow: 0 16px 40px rgba(43, 27, 23, 0.08);
}

.course-date-card__date strong {
    display: block;
    color: var(--dark);
    font-size: 22px;
    margin-bottom: 6px;
}

.course-date-card__date span,
.course-date-card__date small {
    display: block;
    color: var(--muted);
    line-height: 1.6;
}

.course-date-card__arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(198, 167, 125, 0.16);
    color: var(--gold-dark);
    display: grid;
    place-items: center;
    font-size: 26px;
    font-weight: 700;
}

.empty-box {
    padding: 24px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--border);
}

.empty-box h3 {
    margin: 0 0 10px;
    color: var(--dark);
}

.empty-box p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

@media (max-width: 980px) {
    .course-single-layout {
        grid-template-columns: 1fr;
    }

    .course-date-panel {
        position: static;
    }
}

@media (max-width: 640px) {
    .booking-steps {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .booking-steps span,
    .booking-steps a {
        white-space: nowrap;
    }

    .course-info-card,
    .course-date-panel {
        padding: 22px;
        border-radius: 24px;
    }

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

    .course-date-card {
        grid-template-columns: 1fr;
    }

    .course-date-card__arrow {
        width: 100%;
        height: 48px;
        border-radius: 999px;
    }
}

/* ==================================================
   BOOKING / COURSE SYSTEM
================================================== */

.booking-hero {
    padding: 90px 0 80px;
    background:
        radial-gradient(circle at 15% 20%, rgba(198, 167, 125, 0.18), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, var(--pink) 100%);
}

.booking-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 38px;
}

.booking-steps span,
.booking-steps a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.booking-hero h1 {
    max-width: 900px;
    margin: 0;
    font-family: var(--heading);
    color: var(--dark);
    font-size: clamp(52px, 7vw, 92px);
    line-height: 0.94;
    letter-spacing: -0.055em;
}

.booking-hero p {
    max-width: 760px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.8;
}

/* ==================================================
   COURSE PAGE
================================================== */

.course-single-section {
    padding: 80px 0 110px;
    background: #fff;
}

.course-single-layout {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 36px;
    align-items: start;
}

.course-single-main {
    display: grid;
    gap: 24px;
}

.course-info-card,
.course-date-panel {
    padding: 34px;
    border-radius: 34px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.course-info-card h2,
.course-date-panel h2 {
    margin: 0 0 20px;
    font-family: var(--heading);
    color: var(--dark);
    font-size: 42px;
    line-height: 1;
}

.course-copy {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.9;
}

.booking-process-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.booking-process-list div {
    padding: 20px;
    border-radius: 22px;
    background: var(--soft);
    border: 1px solid var(--border);
}

.booking-process-list strong {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(198, 167, 125, 0.16);
    color: var(--gold-dark);
    margin-bottom: 14px;
}

.booking-process-list p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.course-date-panel {
    position: sticky;
    top: 110px;
    background:
        radial-gradient(circle at top right, rgba(198, 167, 125, 0.12), transparent 38%),
        var(--soft);
}

.course-price-box {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.course-price-box div {
    padding: 18px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.course-price-box span {
    color: var(--muted);
    font-size: 14px;
}

.course-price-box strong {
    color: var(--dark);
    text-align: right;
}

.course-date-list {
    display: grid;
    gap: 14px;
}

.course-date-card {
    display: grid;
    grid-template-columns: 1fr 52px;
    gap: 16px;
    align-items: center;
    padding: 20px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--border);
    color: inherit;
    text-decoration: none;
    transition: 0.25s ease;
}

.course-date-card:hover {
    transform: translateY(-3px);
    border-color: rgba(198, 167, 125, 0.45);
    box-shadow: 0 16px 40px rgba(43, 27, 23, 0.08);
}

.course-date-card__date strong {
    display: block;
    color: var(--dark);
    font-size: 22px;
    margin-bottom: 6px;
}

.course-date-card__date span,
.course-date-card__date small {
    display: block;
    color: var(--muted);
    line-height: 1.6;
}

.course-date-card__arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(198, 167, 125, 0.16);
    color: var(--gold-dark);
    display: grid;
    place-items: center;
    font-size: 26px;
    font-weight: 700;
}

.empty-box {
    padding: 24px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--border);
}

.empty-box h3 {
    margin: 0 0 10px;
    color: var(--dark);
}

.empty-box p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

/* ==================================================
   BOOK COURSE PAGE
================================================== */

.booking-form-section {
    padding: 80px 0 110px;
    background: #fff;
}

.booking-form-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 36px;
    align-items: start;
}

.booking-summary-card,
.booking-form-card {
    padding: 34px;
    border-radius: 34px;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: var(--shadow);
}

.booking-summary-card {
    position: sticky;
    top: 110px;
    background:
        radial-gradient(circle at top right, rgba(198, 167, 125, 0.12), transparent 38%),
        var(--soft);
}

.booking-summary-card h2,
.booking-form-card h2 {
    margin: 0 0 20px;
    font-family: var(--heading);
    color: var(--dark);
    font-size: 42px;
    line-height: 1;
}

.booking-summary-card p,
.form-intro {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.booking-summary-row {
    padding: 16px 0;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.booking-summary-row span {
    color: var(--muted);
}

.booking-summary-row strong {
    color: var(--dark);
    text-align: right;
}

.public-form label {
    display: block;
    margin: 18px 0 8px;
    font-weight: 700;
    color: var(--dark);
}

.public-form input,
.public-form textarea {
    width: 100%;
    min-height: 54px;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px 16px;
    font-size: 16px;
    outline: none;
    font-family: inherit;
    resize: vertical;
    background: #fff;
}

.public-form textarea {
    min-height: 120px;
}

.public-form input:focus,
.public-form textarea:focus {
    border-color: rgba(198, 167, 125, 0.55);
    box-shadow: 0 0 0 4px rgba(198, 167, 125, 0.12);
}

.form-grid,
.student-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.student-choice {
    margin: 0 !important;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
    display: flex !important;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    transition: 0.2s ease;
}

.student-choice:hover {
    border-color: rgba(198, 167, 125, 0.35);
    transform: translateY(-1px);
}

.student-choice input {
    width: auto;
    min-height: auto;
    margin-top: 5px;
}

.student-choice strong {
    display: block;
    margin-bottom: 6px;
    color: var(--dark);
    font-size: 16px;
}

.student-choice small {
    display: block;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 500;
}

.terms-box,
.locked-email {
    margin: 24px 0;
    padding: 20px;
    border-radius: 22px;
    background: var(--soft);
    border: 1px solid var(--border);
    color: var(--muted);
    line-height: 1.7;
}

.terms-box strong,
.locked-email strong {
    color: var(--dark);
}

.terms-box p {
    margin: 8px 0 0;
}

.locked-email {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.locked-email span {
    font-weight: 700;
    color: var(--muted);
}

.login-help {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.login-help a {
    color: var(--gold-dark);
    font-weight: 800;
    text-decoration: none;
}

.login-help a:hover {
    text-decoration: underline;
}

.alert.error {
    margin: 0 0 20px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #fff3f3;
    border: 1px solid #f1caca;
    color: #8a2d2d;
    font-weight: 700;
}

.booking-form-card .btn,
.public-form .btn {
    margin-top: 8px;
}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 980px) {

    .course-single-layout,
    .booking-form-grid,
    .form-grid,
    .student-choice-grid {
        grid-template-columns: 1fr;
    }

    .course-date-panel,
    .booking-summary-card {
        position: static;
    }
}

@media (max-width: 640px) {

    .booking-steps {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .booking-steps span,
    .booking-steps a {
        white-space: nowrap;
    }

    .course-info-card,
    .course-date-panel,
    .booking-summary-card,
    .booking-form-card {
        padding: 24px;
        border-radius: 26px;
    }

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

    .course-date-card {
        grid-template-columns: 1fr;
    }

    .course-date-card__arrow {
        width: 100%;
        height: 48px;
        border-radius: 999px;
    }

    .booking-form-section,
    .course-single-section {
        padding: 50px 0 70px;
    }

    .btn {
        width: 100%;
    }

    .student-choice {
        padding: 18px;
    }
}

/* ==================================================
   BOOKING CONFIRMATION
================================================== */

.booking-confirmation-page {
    background: #fff;
    min-height: 100vh;
}

.booking-confirmation-section {
    padding: 80px 0 100px;
    background:
        radial-gradient(circle at 15% 20%, rgba(198, 167, 125, 0.18), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, var(--pink) 100%);
}

.booking-confirmation-wrap {
    width: min(100% - 48px, 1180px);
    margin: 0 auto;
}

.booking-confirmation-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 44px;
}

.booking-confirmation-steps span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.booking-confirmation-steps span.is-active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    border-color: rgba(157, 99, 199, 0.35);
}

.booking-confirmation-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.booking-confirmation-section h1 {
    max-width: 900px;
    margin: 0;
    color: var(--dark);
    font-family: var(--heading);
    font-size: clamp(52px, 7vw, 92px);
    line-height: 0.94;
    letter-spacing: -0.055em;
}

.booking-confirmation-intro {
    max-width: 850px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.8;
}

.booking-confirmation-intro strong {
    color: var(--dark);
}

.booking-confirmation-grid {
    margin-top: 44px;
    display: grid;
    grid-template-columns: minmax(0, 720px) 1fr;
    gap: 28px;
    align-items: stretch;
}

.booking-confirmation-card,
.booking-confirmation-side {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 34px;
    box-shadow: var(--shadow);
}

.booking-confirmation-card {
    padding: 40px;
}

.booking-confirmation-card h2 {
    margin: 0 0 28px;
    color: var(--dark);
    font-family: var(--heading);
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1;
    letter-spacing: -0.04em;
}

.booking-confirmation-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 18px;
}

.booking-confirmation-row strong {
    color: var(--dark);
    text-align: right;
    text-transform: capitalize;
}

.booking-confirmation-paid {
    color: #1e6b38 !important;
}

.booking-confirmation-unpaid {
    color: #b42318 !important;
}

.booking-confirmation-side {
    padding: 34px;
    background:
        radial-gradient(circle at top right, rgba(198, 167, 125, 0.12), transparent 40%),
        #fff;
}

.booking-confirmation-side h3 {
    margin: 0 0 16px;
    color: var(--dark);
    font-family: var(--heading);
    font-size: 34px;
    line-height: 1.05;
}

.booking-confirmation-side p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.booking-confirmation-side ul {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.booking-confirmation-side li {
    position: relative;
    padding: 12px 0 12px 28px;
    border-top: 1px solid var(--border);
    color: var(--dark);
    font-weight: 700;
    line-height: 1.5;
}

.booking-confirmation-side li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--gold-dark);
    font-weight: 900;
}

.booking-confirmation-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.booking-confirmation-btn {
    min-height: 58px;
    padding: 0 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: 0.22s ease;
}

.booking-confirmation-btn--primary {
    background: var(--dark);
    color: #fff;
    box-shadow: 0 16px 34px rgba(43, 27, 23, 0.18);
}

.booking-confirmation-btn--primary:hover {
    transform: translateY(-2px);
    color: #fff;
}

.booking-confirmation-btn--secondary {
    background: #fff;
    border: 1px solid var(--border);
    color: var(--dark);
}

.booking-confirmation-btn--secondary:hover {
    background: var(--soft);
}

@media (max-width: 900px) {
    .booking-confirmation-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .booking-confirmation-section {
        padding: 50px 0 70px;
    }

    .booking-confirmation-wrap {
        width: min(100% - 28px, 1180px);
    }

    .booking-confirmation-steps {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
        margin-bottom: 34px;
    }

    .booking-confirmation-steps span {
        white-space: nowrap;
    }

    .booking-confirmation-card,
    .booking-confirmation-side {
        padding: 24px;
        border-radius: 26px;
    }

    .booking-confirmation-row {
        font-size: 16px;
    }

    .booking-confirmation-actions {
        flex-direction: column;
    }

    .booking-confirmation-btn {
        width: 100%;
    }
}

.portal-theory-panel {
    width: 100%;
    margin: 22px 0 0;
    padding: 22px 24px;
    border-radius: 18px;
    background: #fff6dc;
    border: 1px solid rgba(198, 167, 125, 0.35);
    color: #7a5200;
    display: block !important;
}

.portal-theory-panel-head {
    display: block !important;
    margin-bottom: 12px;
}

.portal-theory-panel-head span {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9a7445;
}

.portal-theory-panel-head strong {
    display: block;
    font-size: 22px;
    line-height: 1.2;
    color: #7a5200;
}

.portal-theory-panel-body {
    display: block !important;
}

.portal-theory-panel-body p {
    margin: 0;
    max-width: 850px;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 700;
    color: #7a5200;
}

.portal-theory-instructions {
    margin-top: 16px;
    padding: 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(198, 167, 125, 0.28);
    line-height: 1.7;
    color: #6f5a36;
}

.portal-theory-panel-actions {
    display: flex !important;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    margin-top: 18px;
}

.portal-theory-panel-actions form {
    margin: 0;
}

.portal-theory-missing {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #ffe1e1;
    border: 1px solid rgba(159, 45, 45, 0.18);
    color: #9f2d2d;
    font-weight: 800;
}

@media (max-width: 768px) {
    .portal-theory-panel {
        padding: 18px;
    }

    .portal-theory-panel-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .portal-theory-panel-actions a,
    .portal-theory-panel-actions button {
        width: 100%;
        text-align: center;
    }
}

/* ==================================================
   PERFECT FEATURES HOMEPAGE
================================================== */

.pf-home {
    overflow: hidden;
}

.pf-video-hero {
    position: relative;
    min-height: 600px;
    height: 68vh;
    max-height: 700px;
    overflow: hidden;
    background: #f7f3ee;
    display: flex;
    align-items: center;
}

.pf-video-hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: none !important;
    animation: none !important;
    opacity: 0.58;
    filter: saturate(0.9) contrast(0.96);
}

.pf-video-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(247, 243, 238, 0.97) 0%, rgba(247, 243, 238, 0.86) 42%, rgba(247, 243, 238, 0.48) 100%),
        linear-gradient(180deg, rgba(247, 243, 238, 0.12) 0%, rgba(247, 243, 238, 0.52) 100%);
}

.pf-video-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 760px;
    padding: 72px 0;
}

.pf-video-hero-content h1 {
    margin: 18px 0 24px;
    max-width: 760px;
    color: var(--dark);
    font-family: var(--heading);
    font-size: clamp(54px, 6vw, 94px);
    line-height: 0.94;
    letter-spacing: -0.055em;
}

.pf-video-hero-content p {
    max-width: 660px;
    margin: 0;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.7;
}

.pf-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.pf-video-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.pf-video-hero-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}

.pf-home-intro,
.pf-home-training,
.pf-home-treatments,
.pf-home-course-list,
.pf-home-contact {
    padding: 100px 0;
}

.pf-home-intro,
.pf-home-treatments,
.pf-home-contact {
    background: var(--cream);
}

.pf-home-training,
.pf-home-course-list {
    background: #fff;
}

.pf-home-intro-grid,
.pf-home-included-grid,
.pf-home-contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.pf-home-intro h2,
.pf-home-section-head h2,
.pf-home-included h2,
.pf-home-portal h2,
.pf-home-contact h2 {
    margin: 14px 0 20px;
    color: var(--dark);
    font-family: var(--heading);
    font-size: clamp(42px, 5vw, 74px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.pf-home-intro p,
.pf-home-section-head p,
.pf-home-included p,
.pf-home-portal p,
.pf-home-contact p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.pf-home-routes {
    padding: 34px 0;
    background: #fff;
}

.pf-home-routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.pf-home-route-card {
    padding: 28px;
    border-radius: 28px;
    background: var(--cream);
    border: 1px solid var(--border);
    transition: 0.22s ease;
}

.pf-home-route-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.pf-home-route-card span {
    color: var(--gold-dark);
    font-weight: 900;
}

.pf-home-route-card h3 {
    margin: 14px 0 12px;
    color: var(--dark);
    font-family: var(--heading);
    font-size: 36px;
    line-height: 1;
}

.pf-home-route-card p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.65;
}

.pf-home-route-card strong,
.pf-home-card strong {
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pf-home-section-head {
    max-width: 900px;
    margin-bottom: 48px;
}

.pf-home-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pf-home-card {
    display: block;
    padding: 24px;
    border-radius: 30px;
    background: var(--cream);
    border: 1px solid var(--border);
    box-shadow: 0 18px 55px rgba(43, 27, 23, 0.06);
    transition: 0.22s ease;
}

.pf-home-card-light {
    background: #fff;
}

.pf-home-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 70px rgba(43, 27, 23, 0.11);
}

.pf-home-card-media {
    display: grid;
    place-items: center;
    min-height: 230px;
    margin-bottom: 24px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(43, 27, 23, 0.12), rgba(198, 167, 125, 0.82)),
        #d8c3a7;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pf-home-card h3 {
    margin: 0 0 14px;
    color: var(--dark);
    font-family: var(--heading);
    font-size: 34px;
    line-height: 1.02;
}

.pf-home-card p {
    margin: 0 0 22px;
    color: var(--muted);
    line-height: 1.7;
}

.pf-home-included {
    padding: 95px 0;
    background: var(--dark);
}

.pf-home-included h2,
.pf-home-included p,
.pf-home-included .eyebrow {
    color: #fff;
}

.pf-home-included-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.pf-home-included-list div {
    padding: 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 900;
}

.pf-home-center {
    margin-top: 36px;
    text-align: center;
}

.pf-home-link-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.pf-home-link-grid a {
    padding: 18px 20px;
    border-radius: 18px;
    background: var(--cream);
    border: 1px solid var(--border);
    color: var(--dark);
    font-weight: 900;
}

.pf-home-portal {
    padding: 90px 0;
    background: #fff;
}

.pf-home-portal-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: center;
    padding: 54px;
    border-radius: 38px;
    background: linear-gradient(135deg, rgba(43, 27, 23, 0.96), rgba(154, 116, 69, 0.86));
    box-shadow: var(--shadow);
}

.pf-home-portal-inner>div {
    max-width: 780px;
}

.pf-home-portal h2,
.pf-home-portal p,
.pf-home-portal .eyebrow {
    color: #fff;
}

.pf-home-contact-box {
    margin: 26px 0;
    padding: 22px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--border);
}

.pf-home-contact-box p {
    margin: 0 0 10px;
}

.pf-home-contact-box p:last-child {
    margin-bottom: 0;
}

.pf-home-map-placeholder {
    display: grid;
    place-items: center;
    min-height: 430px;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(43, 27, 23, 0.18), rgba(198, 167, 125, 0.82)),
        #d8c3a7;
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: var(--shadow);
}

@media (max-width: 1100px) {

    .pf-home-intro-grid,
    .pf-home-included-grid,
    .pf-home-contact-grid {
        grid-template-columns: 1fr;
    }

    .pf-home-routes-grid,
    .pf-home-card-grid,
    .pf-home-link-grid {
        grid-template-columns: 1fr;
    }

    .pf-home-portal-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .pf-video-hero {
        min-height: 620px;
        height: auto;
        max-height: none;
    }
}

@media (max-width: 700px) {
    .pf-video-hero {
        min-height: 620px;
        height: auto;
    }

    .pf-video-hero-media {
        object-position: center center;
        opacity: 0.42;
    }

    .pf-video-hero-overlay {
        background:
            linear-gradient(90deg, rgba(247, 243, 238, 0.97) 0%, rgba(247, 243, 238, 0.9) 100%),
            linear-gradient(180deg, rgba(247, 243, 238, 0.15) 0%, rgba(247, 243, 238, 0.58) 100%);
    }

    .pf-video-hero-content {
        padding: 76px 20px;
    }

    .pf-video-hero-content h1 {
        font-size: 48px;
    }

    .pf-video-hero-content p {
        font-size: 17px;
    }

    .pf-home-intro,
    .pf-home-training,
    .pf-home-treatments,
    .pf-home-course-list,
    .pf-home-contact {
        padding: 70px 0;
    }

    .pf-home-included-list {
        grid-template-columns: 1fr;
    }

    .pf-home-actions .btn {
        width: 100%;
    }
}

.pf-home-intro-image-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

@media (max-width: 1000px) {
    .pf-home-intro-image-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================================================
   RESPONSIVE FIXES - HOMEPAGE IMAGE SECTIONS
================================================== */

.pf-home-intro-image-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.pf-home-intro-image {
    width: 100%;
    overflow: hidden;
    border-radius: 34px;
    background: #d8c3a7;
    box-shadow: var(--shadow);
}

.pf-home-intro-image img {
    width: 100%;
    height: 560px;
    min-height: 0 !important;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 1000px) {
    .pf-home-intro-image-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .pf-home-intro-image {
        border-radius: 28px;
    }

    .pf-home-intro-image img {
        height: 460px;
        object-position: center top;
    }
}

@media (max-width: 700px) {
    .pf-home-intro-image-grid {
        gap: 28px;
    }

    .pf-home-intro-image {
        border-radius: 22px;
    }

    .pf-home-intro-image img {
        height: 360px;
        object-position: center top;
    }
}

@media (max-width: 480px) {
    .pf-home-intro-image img {
        height: 320px;
    }
}


/* ==================================================
   PERFECT FEATURES - FIXED INTRO IMAGE SECTION
================================================== */

.pf-home-intro-image-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.pf-home-intro-image {
    width: 100%;
    overflow: hidden;
    border-radius: 34px;
    background: #d8c3a7;
    box-shadow: var(--shadow);
}

.pf-home-intro-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 1000px) {
    .pf-home-intro-image-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .pf-home-intro-image {
        border-radius: 28px;
    }

    .pf-home-intro-image img {
        height: 460px;
        object-position: center top;
    }
}

@media (max-width: 700px) {
    .pf-home-intro-image-grid {
        gap: 28px;
    }

    .pf-home-intro-image {
        border-radius: 22px;
    }

    .pf-home-intro-image img {
        height: 340px;
    }
}

@media (max-width: 480px) {
    .pf-home-intro-image img {
        height: 300px;
    }
}

/* ==================================================
   PERFECT FEATURES CONTACT / MAP
================================================== */

.pf-home-contact {
    padding: 100px 0;
    background: #fff;
}

.pf-home-contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.pf-home-contact h2 {
    margin: 16px 0 20px;
    font-family: var(--heading);
    color: var(--dark);
    font-size: clamp(42px, 5vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.pf-home-contact p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 17px;
}

.pf-home-contact-box {
    margin-top: 28px;
    padding: 28px;
    border-radius: 28px;
    background: var(--soft);
    border: 1px solid var(--border);
}

.pf-home-contact-box p {
    margin-bottom: 12px;
}

.pf-home-contact-box p:last-child {
    margin-bottom: 0;
}

.pf-home-map {
    min-height: 420px;
    height: 420px;
    border-radius: 32px;
    overflow: hidden;
    background: #f7f3ee;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.pf-home-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

@media (max-width: 980px) {
    .pf-home-contact-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .pf-home-map {
        min-height: 420px;
        border-radius: 26px;
    }
}

@media (max-width: 640px) {
    .pf-home-contact {
        padding: 70px 0;
    }

    .pf-home-contact-box {
        padding: 22px;
        border-radius: 22px;
    }

    .pf-home-map {
        min-height: 320px;
        border-radius: 22px;
    }
}

/* ==================================================
   PREMIUM GOOGLE REVIEWS CAROUSEL
================================================== */

.site-review-carousel-section {
    padding: 95px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 0%, rgba(198, 167, 125, 0.14), transparent 34%),
        #ffffff;
}

.site-review-carousel-head {
    max-width: 860px;
    margin: 0 auto 44px;
    text-align: center;
}

.site-review-carousel-head h2 {
    margin: 14px 0 14px;
    color: var(--dark);
    font-family: var(--heading);
    font-size: clamp(42px, 5vw, 76px);
    line-height: 0.95;
    letter-spacing: -0.045em;
}

.site-review-carousel-head p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.site-review-carousel {
    position: relative;
    overflow: hidden;
    padding: 8px 0 18px;
}

.site-review-carousel::before,
.site-review-carousel::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.site-review-carousel::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
}

.site-review-carousel::after {
    right: 0;
    background: linear-gradient(270deg, #ffffff, rgba(255, 255, 255, 0));
}

.site-review-track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: pfReviewScroll 48s linear infinite;
}

.site-review-carousel:hover .site-review-track {
    animation-play-state: paused;
}

@keyframes pfReviewScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.site-review-slide {
    width: 390px;
    min-height: 315px;
    flex: 0 0 auto;
    padding: 30px;
    border-radius: 30px;
    background: var(--cream);
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(43, 27, 23, 0.07);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.site-review-stars {
    color: var(--gold-dark);
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.site-review-slide p {
    margin: 0 0 26px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.site-review-slide strong {
    display: block;
    margin-top: auto;
    color: var(--dark);
    font-size: 17px;
}

.site-review-slide span {
    display: block;
    margin-top: 5px;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (max-width: 760px) {
    .site-review-carousel-section {
        padding: 70px 0;
    }

    .site-review-slide {
        width: 310px;
        min-height: 340px;
        padding: 24px;
        border-radius: 24px;
    }

    .site-review-carousel::before,
    .site-review-carousel::after {
        width: 50px;
    }

    .site-review-track {
        animation-duration: 60s;
    }
}


/* ==================================================
   PREMIUM HOMEPAGE CAROUSELS
================================================== */

.pf-carousel-section {
    overflow: hidden;
}

.pf-carousel-head {
    max-width: none;
    display: flex;
    justify-content: space-between;
    gap: 34px;
    align-items: flex-end;
    margin-bottom: 42px;
}

.pf-carousel-head>div:first-child {
    max-width: 900px;
}

.pf-carousel-controls {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.pf-carousel-btn {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--dark);
    font-size: 34px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s ease;
    box-shadow: 0 12px 30px rgba(43, 27, 23, 0.06);
}

.pf-carousel-btn:hover {
    background: var(--dark);
    color: #fff;
    transform: translateY(-2px);
}

.pf-carousel-wrap {
    position: relative;
    overflow: hidden;
    padding: 4px 0 18px;
}

.pf-carousel-wrap::before,
.pf-carousel-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    z-index: 2;
    pointer-events: none;
}

.pf-carousel-wrap::before {
    left: 0;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.pf-carousel-wrap::after {
    right: 0;
    background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}

.pf-carousel-wrap-cream::before,
.pf-home-treatments .pf-carousel-wrap::before {
    background: linear-gradient(90deg, var(--cream), rgba(252, 248, 243, 0));
}

.pf-carousel-wrap-cream::after,
.pf-home-treatments .pf-carousel-wrap::after {
    background: linear-gradient(270deg, var(--cream), rgba(252, 248, 243, 0));
}

.pf-carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 4px 16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.pf-carousel-track::-webkit-scrollbar {
    display: none;
}

.pf-carousel-card {
    width: min(390px, 86vw);
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.pf-course-pill-carousel {
    position: relative;
    overflow: hidden;
}

.pf-course-pill-carousel::before,
.pf-course-pill-carousel::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    z-index: 2;
    pointer-events: none;
}

.pf-course-pill-carousel::before {
    left: 0;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.pf-course-pill-carousel::after {
    right: 0;
    background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}

.pf-course-pill-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 4px 16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.pf-course-pill-track::-webkit-scrollbar {
    display: none;
}

.pf-course-pill-card {
    flex: 0 0 auto;
    width: 280px;
    min-height: 86px;
    display: flex;
    align-items: center;
    padding: 20px 22px;
    border-radius: 22px;
    background: var(--cream);
    border: 1px solid var(--border);
    color: var(--dark);
    font-weight: 900;
    line-height: 1.35;
    scroll-snap-align: start;
    transition: 0.2s ease;
    box-shadow: 0 14px 38px rgba(43, 27, 23, 0.04);
}

.pf-course-pill-card:hover {
    background: var(--gold-soft);
    transform: translateY(-2px);
}

/* Better carousel card consistency */
.pf-carousel-card .pf-home-card-media {
    min-height: 235px;
}

.pf-carousel-card h3 {
    min-height: 74px;
}

.pf-carousel-card p {
    min-height: 88px;
}

/* Homepage route cards stay as a strong quick-link block */
.pf-home-routes-grid {
    align-items: stretch;
}

.pf-home-route-card {
    min-height: 235px;
}

/* Mobile carousel behaviour */
@media (max-width: 760px) {
    .pf-carousel-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
        margin-bottom: 28px;
    }

    .pf-carousel-controls {
        width: 100%;
        justify-content: flex-end;
    }

    .pf-carousel-btn {
        width: 48px;
        height: 48px;
        font-size: 30px;
    }

    .pf-carousel-wrap::before,
    .pf-carousel-wrap::after,
    .pf-course-pill-carousel::before,
    .pf-course-pill-carousel::after {
        width: 34px;
    }

    .pf-carousel-card {
        width: 82vw;
    }

    .pf-carousel-card h3,
    .pf-carousel-card p {
        min-height: 0;
    }

    .pf-course-pill-card {
        width: 78vw;
    }
}

@media (max-width: 420px) {
    .pf-carousel-card {
        width: 84vw;
    }

    .pf-course-pill-card {
        width: 82vw;
    }
}

/* ==================================================
   CONTACT PAGE - PREMIUM VERSION
================================================== */

.contact-page {
    background: var(--beige);
}

.contact-hero {
    padding: 105px 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(198, 167, 125, 0.22), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, var(--cream) 100%);
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    gap: 70px;
    align-items: center;
}

.contact-hero h1 {
    max-width: 850px;
    margin: 18px 0 24px;
    color: var(--dark);
    font-family: var(--heading);
    font-size: clamp(56px, 7vw, 96px);
    line-height: 0.92;
    letter-spacing: -0.055em;
}

.contact-hero p {
    max-width: 690px;
    margin: 0;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.75;
}

.contact-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.contact-hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    min-height: 560px;
    background: #d8c3a7;
    box-shadow: var(--shadow);
}

.contact-hero-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.contact-section {
    padding: 95px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
    align-items: start;
}

.contact-info-panel,
.contact-form-panel {
    padding: 36px;
    border-radius: 34px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.contact-info-panel h2,
.contact-success h2 {
    margin: 14px 0 22px;
    color: var(--dark);
    font-family: var(--heading);
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1;
}

.contact-detail-list {
    display: grid;
    gap: 14px;
    margin: 26px 0;
}

.contact-detail-list div {
    padding: 18px;
    border-radius: 20px;
    background: var(--soft);
    border: 1px solid rgba(43, 27, 23, .08);
}

.contact-detail-list span {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-detail-list strong {
    display: block;
    color: var(--dark);
    line-height: 1.45;
}

.contact-map {
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid var(--border);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-form label {
    display: block;
    margin: 18px 0 8px;
    color: var(--dark);
    font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 54px;
    padding: 13px 16px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
    font-size: 16px;
    outline: none;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: rgba(198, 167, 125, .6);
    box-shadow: 0 0 0 4px rgba(198, 167, 125, .14);
}

.contact-form .btn {
    margin-top: 24px;
    width: 100%;
}

.contact-hidden-field {
    display: none;
}

.contact-success {
    margin-bottom: 24px;
    padding: 28px;
    border-radius: 26px;
    background: #e9f8ee;
    border: 1px solid #c8ebd3;
    color: #1e6b38;
}

.contact-success span {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.contact-success h2 {
    color: #1e6b38;
    margin-bottom: 12px;
}

.contact-success p {
    margin: 0;
    line-height: 1.7;
}

.contact-error {
    margin-bottom: 24px;
    padding: 18px;
    border-radius: 18px;
    background: #fdeaea;
    color: #9d1c1c;
    font-weight: 800;
}

@media (max-width: 980px) {

    .contact-hero-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-image {
        min-height: 460px;
    }

    .contact-hero-image img {
        height: 460px;
        object-position: center top;
    }
}

@media (max-width: 640px) {
    .contact-hero {
        padding: 70px 0;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 24px;
        border-radius: 26px;
    }

    .contact-map {
        min-height: 300px;
    }

    .contact-hero-actions .btn {
        width: 100%;
    }

    .contact-hero-image {
        min-height: 360px;
        border-radius: 26px;
    }

    .contact-hero-image img {
        height: 360px;
    }
}

/* ==================================================
   PREMIUM TREATMENTS PAGES
   Paste at the bottom of style.css
================================================== */

.pf-treatments-page,
.pf-treatment-page {
    background: var(--beige);
    overflow: hidden;
}

.pf-treatments-hero,
.pf-treatment-hero {
    position: relative;
    padding: clamp(82px, 9vw, 132px) 0 clamp(58px, 7vw, 96px);
    background:
        radial-gradient(circle at 12% 18%, rgba(198, 167, 125, 0.26), transparent 34%),
        radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.78), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, var(--cream) 58%, var(--gold-soft) 100%);
    border-bottom: 1px solid rgba(43, 27, 23, 0.08);
}

.pf-treatments-hero::after,
.pf-treatment-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -38px;
    width: min(760px, 80vw);
    height: 76px;
    transform: translateX(-50%);
    background: rgba(198, 167, 125, 0.16);
    filter: blur(32px);
    border-radius: 999px;
    pointer-events: none;
}

.pf-treatments-hero-inner,
.pf-treatment-hero-inner {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
    opacity: 0.55;
}

.pf-treatments-hero h1,
.pf-treatment-hero h1 {
    margin: 0 auto;
    max-width: 980px;
    color: var(--dark);
    font-family: var(--heading);
    font-size: clamp(48px, 7vw, 92px);
    line-height: 0.92;
    letter-spacing: -0.045em;
}

.pf-treatments-hero p,
.pf-treatment-hero p {
    max-width: 760px;
    margin: 24px auto 0;
    color: var(--muted);
    font-size: clamp(16px, 1.6vw, 19px);
    line-height: 1.85;
}

.pf-treatment-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.pf-treatment-trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.pf-treatment-trust-row span {
    min-height: 38px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(43, 27, 23, 0.10);
    color: var(--text);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pf-treatment-section {
    padding: clamp(62px, 7vw, 96px) 0;
}

.pf-treatment-section-soft {
    background:
        radial-gradient(circle at 80% 0%, rgba(198, 167, 125, 0.16), transparent 32%),
        var(--cream);
    border-top: 1px solid rgba(43, 27, 23, 0.07);
    border-bottom: 1px solid rgba(43, 27, 23, 0.07);
}

.pf-section-head {
    max-width: 760px;
    margin-bottom: 32px;
}

.pf-section-head h2,
.pf-treatment-card h2,
.pf-treatment-cta h2 {
    margin: 0;
    color: var(--dark);
    font-family: var(--heading);
    font-size: clamp(38px, 5vw, 64px);
    line-height: 0.96;
    letter-spacing: -0.035em;
}

.pf-section-head p,
.pf-treatment-card p,
.pf-treatment-cta p {
    margin-top: 16px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.pf-treatment-split {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 22px;
    align-items: stretch;
}

.pf-treatment-card,
.pf-price-card,
.pf-treatment-list-card,
.pf-faq-item,
.pf-treatment-cta,
.pf-treatment-image-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(43, 27, 23, 0.10);
    box-shadow: 0 24px 70px rgba(43, 27, 23, 0.07);
}

.pf-treatment-card {
    padding: clamp(28px, 4vw, 42px);
    border-radius: 34px;
}

.pf-benefit-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.pf-benefit-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 14px;
    align-items: center;
    min-height: 62px;
    padding: 14px;
    border-radius: 20px;
    background: var(--soft);
    border: 1px solid rgba(43, 27, 23, 0.07);
}

.pf-benefit-item span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.pf-benefit-item span::before {
    content: "✓";
    color: #fff;
    font-weight: 900;
    font-size: 14px;
}

.pf-benefit-item strong {
    color: var(--dark);
    line-height: 1.45;
}

.pf-treatment-price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.pf-price-card {
    min-height: 168px;
    padding: 26px;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.2s ease;
}

.pf-price-card:hover,
.pf-treatment-list-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 90px rgba(43, 27, 23, 0.11);
}

.pf-price-card h3,
.pf-treatment-list-card h3 {
    margin: 0;
    color: var(--dark);
    font-family: var(--heading);
    font-size: 31px;
    line-height: 1;
}

.pf-price-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(43, 27, 23, 0.09);
}

.pf-price-meta span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.pf-price-meta strong {
    color: var(--gold-dark);
    font-size: 20px;
    font-weight: 900;
    white-space: nowrap;
}

.pf-treatment-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    padding: clamp(30px, 4vw, 48px);
    border-radius: 36px;
    background:
        radial-gradient(circle at 10% 0%, rgba(198, 167, 125, 0.22), transparent 34%),
        #fff;
}

.pf-faq-list {
    display: grid;
    gap: 14px;
    max-width: 920px;
}

.pf-faq-item {
    border-radius: 24px;
    overflow: hidden;
}

.pf-faq-item summary {
    position: relative;
    padding: 22px 58px 22px 24px;
    color: var(--dark);
    font-weight: 900;
    cursor: pointer;
    list-style: none;
}

.pf-faq-item summary::-webkit-details-marker {
    display: none;
}

.pf-faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: var(--gold-soft);
    color: var(--gold-dark);
    display: grid;
    place-items: center;
    font-weight: 900;
}

.pf-faq-item[open] summary::after {}

.pf-faq-item p {
    margin: 0;
    padding: 0 24px 24px;
    color: var(--muted);
    line-height: 1.75;
}

.pf-treatments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.pf-treatment-list-card {
    min-height: 260px;
    padding: 26px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    transition: 0.2s ease;
}

.pf-treatment-list-card span {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 28px;
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.pf-treatment-list-card p {
    margin: 14px 0 22px;
    color: var(--muted);
    line-height: 1.7;
}

.pf-treatment-list-card strong {
    margin-top: auto;
    color: var(--dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pf-treatment-image-section {
    padding: 54px 0 0;
    background: var(--beige);
}

.pf-treatment-image-card {
    margin: 0;
    border-radius: 36px;
    overflow: hidden;
}

.pf-treatment-image-card img {
    display: block;
    width: 100%;
    height: min(520px, 58vw);
    object-fit: cover;
}

/* Remove old treatment right-side card layout if old CSS remains */
.treatment-detail-grid {
    grid-template-columns: 1fr !important;
}

.treatment-summary-card {
    display: none !important;
}

@media (max-width: 1050px) {

    .pf-treatment-price-grid,
    .pf-treatments-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pf-treatment-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {

    .pf-treatments-hero,
    .pf-treatment-hero {
        padding: 64px 0 54px;
    }

    .pf-treatment-hero-actions,
    .pf-treatment-trust-row {
        align-items: stretch;
        flex-direction: column;
    }

    .pf-treatment-hero-actions .btn,
    .pf-treatment-trust-row span {
        width: 100%;
    }

    .pf-treatment-price-grid,
    .pf-treatments-grid {
        grid-template-columns: 1fr;
    }

    .pf-treatment-list-card {
        min-height: 220px;
    }

    .pf-treatment-cta {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .pf-treatment-cta .btn {
        width: 100%;
    }

    .pf-price-meta {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* ==================================================
   TRAINING PAGES - PREMIUM SEO LAYOUT
================================================== */

.training-hero {
    padding: 96px 0 72px;
    background:
        radial-gradient(circle at 14% 12%, rgba(198, 167, 125, 0.22), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, var(--cream) 100%);
}

.training-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) 390px;
    gap: 40px;
    align-items: stretch;
}

.training-hero-copy {
    max-width: 820px;
}

.training-eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.training-hero h1,
.training-section-head h2,
.training-content-card h2,
.training-cta-box h2 {
    color: var(--dark);
    font-family: var(--heading);
    line-height: 0.96;
}

.training-hero h1 {
    max-width: 880px;
    font-size: clamp(48px, 7vw, 92px);
    margin: 0 0 24px;
}

.training-hero p {
    max-width: 760px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.training-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.training-price-card,
.training-content-card,
.training-course-card,
.training-mini-card,
.training-module-card,
.training-faq-list details,
.training-cta-box {
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.training-price-card {
    border-radius: 34px;
    padding: 34px;
    align-self: start;
    position: sticky;
    top: 130px;
}

.training-price-card>span {
    display: block;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.training-price-card>strong {
    display: block;
    color: var(--dark);
    font-family: var(--heading);
    font-size: 64px;
    line-height: 1;
    margin-bottom: 24px;
}

.training-summary-list {
    display: grid;
    gap: 12px;
}

.training-summary-list div {
    padding: 16px;
    border-radius: 18px;
    background: var(--soft);
    border: 1px solid rgba(43, 27, 23, 0.08);
}

.training-summary-list small {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.training-summary-list b {
    display: block;
    color: var(--dark);
    line-height: 1.35;
}

.training-section {
    padding: 82px 0;
}

.training-section-soft {
    background: var(--soft);
}

.training-section-head {
    max-width: 820px;
    margin-bottom: 34px;
}

.training-section-head h2,
.training-content-card h2,
.training-cta-box h2 {
    font-size: clamp(38px, 5vw, 64px);
    margin: 0 0 16px;
}

.training-section-head p,
.training-content-card p,
.training-cta-box p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.training-included-grid,
.training-module-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.training-mini-card,
.training-module-card {
    min-height: 112px;
    padding: 24px;
    border-radius: 24px;
}

.training-mini-card span {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 14px;
    background: var(--gold-soft);
    color: var(--gold-dark);
    font-weight: 900;
}

.training-mini-card strong {
    display: block;
    color: var(--dark);
    line-height: 1.4;
}

.training-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.training-content-card {
    padding: 38px;
    border-radius: 32px;
}

.training-highlight-card {
    background:
        radial-gradient(circle at 12% 14%, rgba(198, 167, 125, 0.18), transparent 30%),
        #fff;
}

.training-module-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    box-shadow: 0 16px 44px rgba(43, 27, 23, 0.05);
}

.training-module-card span {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    margin-top: 7px;
    border-radius: 999px;
    background: var(--gold);
}

.training-module-card p {
    margin: 0;
    color: var(--text);
    font-weight: 800;
    line-height: 1.5;
}

.training-check-list {
    display: grid;
    gap: 16px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.training-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text);
    line-height: 1.6;
    font-weight: 700;
}

.training-check-list li::before {
    content: "✓";
    color: var(--gold-dark);
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 1px;
}

.training-faq-section {
    background: #fff;
}

.training-faq-list {
    display: grid;
    gap: 14px;
    max-width: 960px;
}

.training-faq-list details {
    border-radius: 22px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(43, 27, 23, 0.04);
}

.training-faq-list summary {
    cursor: pointer;
    padding: 22px 24px;
    color: var(--dark);
    font-weight: 900;
    list-style: none;
}

.training-faq-list summary::-webkit-details-marker {
    display: none;
}

.training-faq-list p {
    padding: 0 24px 24px;
    color: var(--muted);
    line-height: 1.8;
}

.training-cta {
    padding: 80px 0 100px;
    background: var(--soft);
}

.training-cta-box {
    padding: 48px;
    border-radius: 34px;
    text-align: center;
}

.training-cta-box p,
.training-cta-box .training-hero-actions {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.training-course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.training-course-card {
    min-height: 280px;
    padding: 28px;
    border-radius: 28px;
    transition: 0.2s ease;
}

.training-course-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 80px rgba(43, 27, 23, 0.12);
}

.training-course-card span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0 13px;
    border-radius: 999px;
    background: var(--gold-soft);
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.training-course-card h3 {
    margin: 20px 0 12px;
    color: var(--dark);
    font-family: var(--heading);
    font-size: 34px;
    line-height: 1;
}

.training-course-card p {
    color: var(--muted);
    line-height: 1.7;
}

.training-course-card strong {
    display: block;
    margin-top: 20px;
    color: var(--dark);
    font-size: 24px;
}

@media (max-width: 980px) {

    .training-hero-inner,
    .training-two-col {
        grid-template-columns: 1fr;
    }

    .training-price-card {
        position: static;
    }

    .training-included-grid,
    .training-module-grid,
    .training-course-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .training-hero {
        padding: 70px 0 52px;
    }

    .training-hero-inner {
        gap: 24px;
    }

    .training-hero h1 {
        font-size: clamp(44px, 15vw, 62px);
    }

    .training-hero p {
        font-size: 16px;
    }

    .training-price-card,
    .training-content-card,
    .training-cta-box {
        padding: 26px;
        border-radius: 26px;
    }

    .training-price-card>strong {
        font-size: 52px;
    }

    .training-section {
        padding: 58px 0;
    }

    .training-included-grid,
    .training-module-grid,
    .training-course-grid {
        grid-template-columns: 1fr;
    }

    .training-course-card {
        min-height: auto;
    }

    .training-hero-actions .btn {
        width: 100%;
    }
}

.nav-dropdown-menu-wide {
    width: 560px;
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 980px) {

    .nav-dropdown-menu,
    .nav-dropdown-menu-wide {
        width: 100%;
        position: static;
        transform: none;
        box-shadow: none;
        border-radius: 20px;
        margin: 8px 0 12px;
        display: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        grid-template-columns: 1fr;
        padding: 12px;
    }

    .nav-dropdown.is-open .nav-dropdown-menu,
    .nav-dropdown.is-open .nav-dropdown-menu-wide {
        display: grid;
    }

    .nav-dropdown::after {
        display: none;
    }
}

/* ==================================================
   MOBILE CAROUSELS FOR TRAINING + TREATMENTS
================================================== */

@media (max-width: 760px) {

    .training-course-grid,
    .pf-treatments-grid,
    .treatment-category-grid,
    .treatment-grid,
    .training-mini-grid,
    .training-module-grid,
    .faq-grid {
        display: flex !important;
        gap: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding: 4px 0 18px;
        margin-left: -14px;
        margin-right: -14px;
        padding-left: 14px;
        padding-right: 14px;
        -webkit-overflow-scrolling: touch;
    }

    .training-course-card,
    .pf-treatment-list-card,
    .treatment-category-card,
    .treatment-card,
    .training-mini-card,
    .training-module-card,
    .faq-card {
        min-width: 82%;
        max-width: 82%;
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    .training-course-card,
    .pf-treatment-list-card,
    .treatment-category-card,
    .treatment-card {
        min-height: 250px;
    }

    .training-course-grid::-webkit-scrollbar,
    .pf-treatments-grid::-webkit-scrollbar,
    .treatment-category-grid::-webkit-scrollbar,
    .treatment-grid::-webkit-scrollbar,
    .training-mini-grid::-webkit-scrollbar,
    .training-module-grid::-webkit-scrollbar,
    .faq-grid::-webkit-scrollbar {
        display: none;
    }

    .training-course-grid,
    .pf-treatments-grid,
    .treatment-category-grid,
    .treatment-grid,
    .training-mini-grid,
    .training-module-grid,
    .faq-grid {
        scrollbar-width: none;
    }
}

/* Make included cards tighter and one-line where possible */
@media (max-width: 760px) {

    .training-summary-list div,
    .training-mini-card {
        display: flex !important;
        align-items: center;
        gap: 14px;
    }

    .training-summary-list div small {
        margin: 0;
        flex-shrink: 0;
    }

    .training-summary-list div b,
    .training-mini-card strong,
    .training-mini-card h3 {
        margin: 0;
        line-height: 1.3;
    }
}

@media (max-width: 760px) {

    .training-included-grid,
    .training-feature-grid,
    .training-support-grid {
        display: flex !important;
        gap: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding: 4px 14px 18px;
        margin-left: -14px;
        margin-right: -14px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .training-included-grid::-webkit-scrollbar,
    .training-feature-grid::-webkit-scrollbar,
    .training-support-grid::-webkit-scrollbar {
        display: none;
    }

    .training-included-grid>*,
    .training-feature-grid>*,
    .training-support-grid>* {
        min-width: 82%;
        max-width: 82%;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
}

/* ==================================================
   HOME TREATMENT CARDS WITH IMAGES
================================================== */

.pf-home-treatments .pf-home-card {
    overflow: hidden;
    padding: 0;
    border-radius: 32px;
    background: #fff;
    border: 1px solid rgba(43, 27, 23, 0.08);
    box-shadow: 0 18px 50px rgba(43, 27, 23, 0.06);
    transition: 0.25s ease;
}

.pf-home-treatments .pf-home-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(43, 27, 23, 0.10);
}

.pf-home-card-media {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #c6a77d;
}

.pf-home-card-media img {
    width: 100%;
    height: 100%;
    display: block;
    /* object-fit: cover; */
    object-position: center;
    transition: transform 0.5s ease;
}

.pf-home-card:hover .pf-home-card-media img {
    transform: scale(1.04);
}

.pf-home-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(43, 27, 23, 0.02) 0%,
            rgba(43, 27, 23, 0.22) 100%);
    pointer-events: none;
}

.pf-home-card-media span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 36px;
    padding: 0 16px;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);

    color: var(--dark);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pf-home-treatments .pf-home-card h3 {
    padding: 28px 28px 0;
    margin: 0;

    color: var(--dark);

    font-family: var(--heading);
    font-size: clamp(34px, 4vw, 50px);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.pf-home-treatments .pf-home-card p {
    padding: 18px 28px 0;
    margin: 0;

    color: var(--muted);
    line-height: 1.8;
    font-size: 15px;
}

.pf-home-treatments .pf-home-card strong {
    display: inline-flex;
    align-items: center;

    padding: 26px 28px 30px;

    color: var(--gold-dark);

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pf-home-treatments .pf-carousel-card {
    min-width: 420px;
}

@media (max-width: 980px) {
    .pf-home-treatments .pf-carousel-card {
        min-width: 340px;
    }

    .pf-home-card-media {
        height: 240px;
    }
}

@media (max-width: 640px) {
    .pf-home-treatments .pf-carousel-card {
        min-width: 88%;
    }

    .pf-home-card-media {
        height: 220px;
    }

    .pf-home-treatments .pf-home-card h3 {
        padding: 22px 22px 0;
        font-size: 42px;
    }

    .pf-home-treatments .pf-home-card p {
        padding: 16px 22px 0;
    }

    .pf-home-treatments .pf-home-card strong {
        padding: 22px;
    }
}

.portal-footer {
    margin-top: 80px;
    padding: 40px 20px;
    background: #2b1b17;
    color: rgba(255, 255, 255, 0.72);
}

.portal-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.portal-footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.portal-footer-top p {
    margin: 0;
    font-size: 14px;
}

.portal-footer a {
    color: #d2b48c;
    text-decoration: none;
}

.portal-footer a:hover {
    opacity: 0.8;
}

.portal-footer-bottom {
    display: flex;
    justify-content: center;
    text-align: center;
}

.portal-footer-bottom p {
    margin: 0;
    font-size: 13px;
    letter-spacing: 0.04em;
}

@media (max-width: 768px) {

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

}

/* ==================================================
   ABOUT PAGE - NO LARGE IMAGE PLACEHOLDERS
================================================== */

.about-page {
    background: var(--beige);
}

.about-hero {
    padding: 110px 0 90px;
    background:
        radial-gradient(circle at 15% 18%, rgba(198, 167, 125, 0.18), transparent 32%),
        linear-gradient(135deg, #fff 0%, var(--cream) 100%);
}

.about-hero-inner {
    max-width: 980px;
}

.about-hero h1,
.about-story h2,
.about-values h2,
.about-clinic h2,
.about-team h2,
.about-cta h2 {
    font-family: var(--heading);
    color: var(--dark);
    letter-spacing: -0.05em;
    line-height: 0.95;
}

.about-hero h1 {
    margin-top: 14px;
    font-size: clamp(54px, 8vw, 104px);
}

.about-hero p {
    max-width: 760px;
    margin-top: 26px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.about-actions {
    margin-top: 34px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.about-story,
.about-values,
.about-clinic,
.about-team,
.about-cta {
    padding: 95px 0;
}

.about-story-grid,
.about-clinic-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.about-story-card {
    min-height: 420px;
    padding: 42px;
    border-radius: 34px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.about-story-card-dark {
    background:
        radial-gradient(circle at top right, rgba(198, 167, 125, 0.28), transparent 42%),
        var(--dark);
    color: #fff;
}

.about-story-card span,
.about-value-card span,
.about-team-content span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-story-card strong {
    margin: 16px 0;
    font-family: var(--heading);
    font-size: 94px;
    line-height: 0.8;
}

.about-story-card p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.about-story-content {
    padding: 20px 0;
}

.about-story h2,
.about-clinic h2,
.about-section-head h2 {
    max-width: 900px;
    font-size: clamp(42px, 5vw, 76px);
}

.about-story p,
.about-clinic p,
.about-team p,
.about-section-head p,
.about-cta p {
    margin-top: 22px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.about-section-head {
    max-width: 900px;
    margin-bottom: 42px;
}

.about-section-head-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.about-values {
    background: var(--cream);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.about-value-card {
    min-height: 310px;
    padding: 30px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 18px 55px rgba(43, 27, 23, 0.05);
    transition: 0.25s ease;
}

.about-value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.about-value-card h3 {
    margin-top: 34px;
    color: var(--dark);
    font-family: var(--heading);
    font-size: 36px;
    line-height: 1;
}

.about-value-card p {
    margin-top: 18px;
    color: var(--muted);
    line-height: 1.7;
}

.about-feature-list {
    display: grid;
    gap: 16px;
}

.about-feature-list div {
    padding: 24px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 16px 45px rgba(43, 27, 23, 0.045);
}

.about-feature-list strong {
    display: block;
    color: var(--dark);
    font-size: 20px;
    margin-bottom: 8px;
}

.about-feature-list p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.about-team {
    background: var(--cream);
}

.about-team-grid {
    display: grid;
    /* grid-template-columns: repeat(3, 1fr); */
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.about-team-card {
    overflow: hidden;
    border-radius: 34px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(43, 27, 23, 0.07);
}

.about-team-placeholder {
    height: 260px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.34), transparent 24%),
        linear-gradient(135deg, rgba(198, 167, 125, 0.36), rgba(43, 27, 23, 0.12)),
        var(--gold-soft);
}

.about-team-placeholder span {
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-team-content {
    padding: 30px;
}

.about-team-content h3 {
    margin-top: 12px;
    color: var(--dark);
    font-family: var(--heading);
    font-size: 42px;
    line-height: 1;
}

.about-team-content p {
    margin-top: 16px;
    font-size: 15px;
}

.about-cta-box {
    padding: 50px;
    border-radius: 38px;
    background:
        radial-gradient(circle at top right, rgba(198, 167, 125, 0.18), transparent 40%),
        var(--dark);
    color: #fff;
    display: flex;
    justify-content: space-between;
    gap: 36px;
    align-items: center;
}

.about-cta h2 {
    max-width: 780px;
    color: #fff;
    font-size: clamp(42px, 5vw, 76px);
}

.about-cta p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.72);
}

.about-cta-actions {
    min-width: 230px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-cta .btn-dark {
    background: var(--gold);
    color: #fff;
}

@media (max-width: 1050px) {

    .about-values-grid,
    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-story-grid,
    .about-clinic-grid {
        grid-template-columns: 1fr;
    }

    .about-story-card {
        min-height: 320px;
    }

    .about-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-cta-actions {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 760px) {
    .about-hero {
        padding: 70px 0;
    }

    .about-story,
    .about-values,
    .about-clinic,
    .about-team,
    .about-cta {
        padding: 60px 0;
    }

    .about-values-grid,
    .about-team-grid {
        grid-template-columns: 1fr;
    }

    .about-story-card {
        padding: 30px;
        border-radius: 28px;
    }

    .about-story-card strong {
        font-size: 72px;
    }

    .about-team-placeholder {
        height: 220px;
    }

    .about-cta-box {
        padding: 30px;
        border-radius: 28px;
    }

    .about-actions,
    .about-actions .btn,
    .about-cta-actions,
    .about-cta-actions .btn {
        width: 100%;
    }
}

.about-team-photo {
    height: 260px;
    overflow: hidden;
    background: var(--gold-soft);
}

.about-team-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.logo-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image img {
    width: 82px;
    height: 82px;
    display: block;
    object-fit: contain;
    border-radius: 50%;
    transition: 0.25s ease;
}

.logo-image img:hover {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .logo-image img {
        width: 62px;
        height: 62px;
    }
}

/* ==================================================
   PREMIUM FOOTER WITH SOCIALS + BOTTOM LEGAL
================================================== */

.site-footer {
    background:
        radial-gradient(circle at top left, rgba(198, 167, 125, 0.14), transparent 28%),
        linear-gradient(180deg, #2b1b17 0%, #1b100d 100%);
    color: #fff;
    padding: 90px 0 30px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1fr 1fr;
    gap: 44px;
    align-items: start;
}

.footer-logo-image {
    display: inline-flex;
    margin-bottom: 26px;
}

.footer-logo-image img {
    width: 94px;
    height: 94px;
    display: block;
    object-fit: contain;
    border-radius: 50%;
}

.footer-brand-block p {
    max-width: 390px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.9;
}

.footer-contact-list {
    display: grid;
    gap: 10px;
}

.footer-contact-list a,
.footer-contact-list span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact-list a,
.footer-bottom a {
    color: var(--gold);
    font-weight: 800;
}

.footer-col h4 {
    margin: 0 0 18px;
    color: #fff;
    font-family: var(--heading);
    font-size: 28px;
    line-height: 1;
}

.footer-col a {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.5;
    transition: 0.2s ease;
}

.footer-col a:hover,
.footer-bottom a:hover,
.footer-legal-links a:hover {
    color: #fff;
}

.footer-socials {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

.footer-socials a {
    width: 52px;
    height: 52px;
    margin: 0;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: 0.2s ease;
}

.footer-socials a:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.footer-socials svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

.footer-bottom {
    margin-top: 54px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom p:last-child {
    text-align: right;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 1180px) {
    .footer-main {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom p:last-child {
        text-align: center;
    }
}

@media (max-width: 760px) {
    .site-footer {
        padding: 70px 0 30px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-logo-image img {
        width: 82px;
        height: 82px;
    }

    .footer-col h4 {
        font-size: 24px;
    }

    .footer-socials {
        justify-content: flex-start;
    }

    .footer-bottom {
        margin-top: 42px;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 12px;
    }
}

/* ==================================================
   TRAINING / TREATMENT CARD IMAGES
================================================== */

.pf-home-card {
    overflow: hidden;
}

.pf-home-card-media {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 30px;
    background: #efe7dd;
    margin-bottom: 26px;
}

.pf-home-card-media img {
    width: 100%;
    height: 100%;
    display: block;

    /* object-fit: cover; */
    object-position: center center;

    border-radius: 30px;

    transition: transform 0.35s ease;
}

.pf-home-card:hover .pf-home-card-media img {
    transform: scale(1.03);
}

.pf-home-card-media::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.22),
            rgba(0, 0, 0, 0.02));

    pointer-events: none;
}

.pf-home-card-badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    z-index: 5;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 130px;
    height: 48px;
    padding: 0 22px;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.96);

    color: #2B1B17;

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}

/* Mobile */

@media (max-width: 768px) {

    .pf-home-card-media {
        height: 250px;
        border-radius: 24px;
    }

    .pf-home-card-media img {
        border-radius: 24px;
    }

    .pf-home-card-badge {
        left: 16px;
        bottom: 16px;

        min-width: 110px;
        height: 42px;

        padding: 0 18px;

        font-size: 11px;
    }
}

@media (max-width: 980px) {
    .main-nav.active {
        max-height: calc(100vh - 110px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    body.menu-open {
        overflow: hidden;
    }
}

.booking-policy-check {
    margin: 24px 0;
    padding: 18px;
    border-radius: 18px;
    background: #FCF8F3;
    border: 1px solid rgba(43, 23, 18, 0.12);
}

.booking-policy-check label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    cursor: pointer;
}

.booking-policy-check input {
    margin-top: 5px;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.booking-policy-check span {
    color: #7A6B66;
    font-size: 14px;
    line-height: 1.7;
}

.booking-policy-check a {
    color: #2B1712;
    font-weight: 900;
    text-decoration: underline;
}

#booking-login {
    scroll-margin-top: 160px;
}

.admin-notification-nav {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.admin-notification-nav:hover {
    background: rgba(255, 255, 255, 0.08);
}

.admin-notification-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
}

.admin-nav-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: #c2410c;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.site-review-google-wrap {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.google-review-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 999px;
    background: var(--cream);
    color: radial-gradient(circle at top right, rgba(198, 167, 125, 0.18), transparent 40%), var(--dark);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
}

.google-review-link:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.admin-booking-view-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border, rgba(43, 27, 23, 0.10));
}

.admin-booking-view-row .admin-action-btn {
    min-width: 150px;
}

@media (max-width: 700px) {
    .admin-booking-view-row {
        justify-content: stretch;
    }

    .admin-booking-view-row .admin-action-btn {
        width: 100%;
    }
}

.portal-booking-top-meta {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
}

.portal-booking-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: #2b1712;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.portal-booking-view-btn:hover {
    background: #b99257;
    color: #fff;
}

.admin-login-logo {
    text-align: center;
    margin-bottom: 22px;
}

.admin-login-logo img {
    max-width: 230px;
    width: 100%;
    height: auto;
}

.admin-login-forgot {
    margin-top: 22px;
}

@media (max-width: 768px) {
    .admin-login-page {
        padding: 18px;
        min-height: 100vh;
    }

    .admin-login-box {
        width: 100%;
        max-width: 100%;
        padding: 30px 24px;
        border-radius: 24px;
    }

    .admin-login-logo img {
        max-width: 180px;
    }

    .admin-login-box h1 {
        font-size: 36px;
        line-height: 1.05;
    }

    .admin-login-box p {
        font-size: 16px;
    }

    .admin-login-box label {
        font-size: 16px;
    }

    .admin-login-box input {
        min-height: 56px;
        font-size: 16px;
    }

    .admin-login-box .btn {
        min-height: 58px;
        font-size: 16px;
    }
}

.portal-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.portal-brand-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.portal-brand-text {
    display: flex;
    flex-direction: column;
}

.portal-brand-text strong {
    color: var(--dark);
    font-size: 24px;
    line-height: 1.1;
}

.portal-brand-text small {
    color: var(--muted);
}

@media (max-width: 768px) {

    .portal-brand-logo {
        width: 48px;
        height: 48px;
    }

    .portal-brand-text strong {
        font-size: 18px;
    }

    .portal-brand-text small {
        font-size: 13px;
    }
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.admin-brand-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    flex-shrink: 0;
}

.admin-brand-text {
    display: flex;
    flex-direction: column;
}

.admin-brand-text strong {
    color: #fff;
    font-size: 24px;
    line-height: 1.1;
}

.admin-brand-text span {
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
}

.portal-hero-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.install-app-btn {
    cursor: pointer;
}

@media (max-width: 640px) {
    .portal-hero-actions {
        width: 100%;
    }

    .portal-hero-actions .portal-logout-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* Mobile-only topbar improvement */
/* @media (max-width: 980px) {
    .site-topbar {
        display: block !important;
        background: var(--dark);
    }

    .site-topbar-inner {
        min-height: auto;
        padding: 8px 14px;
        display: flex;
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .site-topbar-left,
    .site-topbar-right {
        width: 100%;
        justify-content: center;
        gap: 8px;
    }

    .site-topbar-left span {
        font-size: 12px;
        font-weight: 800;
        line-height: 1.25;
        color: rgba(255, 255, 255, 0.92);
    }

    .site-topbar-right a {
        font-size: 12px;
        font-weight: 800;
        line-height: 1.25;
        color: rgba(255, 255, 255, 0.9);
    }

    .topbar-portal-link {
        display: none;
    }
} */

.site-promo-banner {
    min-height: 40px;
    display: grid;
    place-items: center;
    background: linear-gradient(90deg, var(--dark), var(--gold-dark));
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.promo-message {
    display: none;
    padding: 9px 16px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.promo-message.active {
    display: block;
}

@media (max-width: 640px) {
    .site-promo-banner {
        min-height: 38px;
    }

    .promo-message {
        font-size: 12px;
        line-height: 1.3;
    }
}

/* Homepage - Trust / Sian */
.pf-home-trust {
    padding: 95px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(198, 167, 125, 0.12), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, var(--cream) 100%);
}

.pf-home-trust-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: stretch;
}

.pf-home-trust-content,
.pf-home-sian-mini {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 34px;
    box-shadow: var(--shadow);
}

.pf-home-trust-content {
    padding: 46px;
}

.pf-home-trust-content h2 {
    max-width: 850px;
    margin: 0;
    color: var(--dark);
    font-family: var(--heading);
    font-size: clamp(46px, 5vw, 76px);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.pf-home-trust-content p {
    max-width: 760px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.pf-home-trust-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 30px 0;
}

.pf-home-trust-list div {
    padding: 20px;
    border-radius: 22px;
    background: var(--soft);
    border: 1px solid rgba(43, 27, 23, 0.08);
}

.pf-home-trust-list strong {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 17px;
}

.pf-home-trust-list p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.pf-home-sian-mini {
    overflow: hidden;
}

.pf-home-sian-mini img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.pf-home-sian-mini div {
    padding: 26px;
}

.pf-home-sian-mini span {
    display: block;
    margin-bottom: 10px;
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pf-home-sian-mini h3 {
    margin: 0;
    color: var(--dark);
    font-family: var(--heading);
    font-size: 42px;
    line-height: 1;
}

.pf-home-sian-mini p {
    margin-top: 14px;
    color: var(--muted);
    line-height: 1.7;
}

@media (max-width: 980px) {
    .pf-home-trust-grid {
        grid-template-columns: 1fr;
    }

    .pf-home-sian-mini {
        display: grid;
        grid-template-columns: 220px 1fr;
    }

    .pf-home-sian-mini img {
        height: 100%;
        min-height: 260px;
    }
}

@media (max-width: 640px) {
    .pf-home-trust {
        padding: 60px 0;
    }

    .pf-home-trust-content {
        padding: 26px;
        border-radius: 26px;
    }

    .pf-home-trust-list {
        grid-template-columns: 1fr;
    }

    .pf-home-sian-mini {
        display: block;
        border-radius: 26px;
    }

    .pf-home-sian-mini img {
        height: 320px;
    }

    .pf-home-sian-mini div {
        padding: 24px;
    }
}

.area-page {
    background: #fffaf7;
}

.area-hero {
    padding: 80px 0 90px;
    background: linear-gradient(135deg, #fffaf7 0%, #f7eee8 100%);
}

.area-hero-centered {
    text-align: center;
}

.area-center {
    max-width: 850px;
    margin: 0 auto;
}

.area-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 36px;
    font-size: 13px;
    font-weight: 700;
    color: #8a756d;
}

.area-hero-centered .area-breadcrumbs {
    justify-content: center;
}

.area-breadcrumbs a {
    color: #2b1713;
    text-decoration: none;
}

.area-breadcrumbs a:hover {
    text-decoration: underline;
}

.area-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
    gap: 70px;
    align-items: center;
}

.area-hero-content h1 {
    margin: 12px 0 20px;
    color: #2b1713;
    font-size: clamp(46px, 6vw, 78px);
    line-height: .92;
    letter-spacing: -0.055em;
}

.area-hero-content p {
    max-width: 640px;
    color: #74645d;
    font-size: 18px;
    line-height: 1.75;
}

.area-center p {
    margin-left: auto;
    margin-right: auto;
}

.area-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.area-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.area-btn:hover {
    transform: translateY(-2px);
}

.area-btn-primary {
    background: #2b1713;
    color: #fff;
    box-shadow: 0 14px 30px rgba(43, 23, 19, .18);
}

.area-btn-secondary {
    background: #fff;
    color: #2b1713;
    border: 1px solid rgba(43, 23, 19, .12);
}

.area-btn-light {
    background: #fff;
    color: #2b1713;
}

.area-hero-image {
    border-radius: 34px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 28px 65px rgba(43, 23, 19, .18);
}

.area-hero-image img {
    display: block;
    width: 100%;
    /* height: 430px; */
    object-fit: cover;
}

.area-section {
    padding: 82px 0;
}

.area-soft {
    background: #fff;
}

.area-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 42px;
    align-items: start;
}

.area-copy-card,
.area-location-card,
.area-steps article,
.area-faq-grid article {
    background: #fff;
    border: 1px solid rgba(43, 23, 19, .08);
    border-radius: 28px;
    box-shadow: 0 16px 40px rgba(43, 23, 19, .05);
}

.area-copy-card {
    padding: 46px;
}

.area-copy-card h2 {
    margin: 12px 0 18px;
    color: #2b1713;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1;
    letter-spacing: -0.045em;
}

.area-copy-card p {
    color: #74645d;
    line-height: 1.75;
}

.area-highlight {
    margin-top: 32px;
    padding: 30px;
    border-radius: 24px;
    background: #fbf4ef;
}

.area-highlight h3 {
    margin: 0 0 16px;
    color: #2b1713;
}

.area-highlight ul {
    margin: 0;
    padding-left: 20px;
    color: #74645d;
    line-height: 1.9;
}

.area-sidebar {
    position: sticky;
    top: 120px;
    background: #2b1713;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 22px 55px rgba(43, 23, 19, .18);
}

.area-sidebar h3 {
    margin: 0 0 16px;
    color: #fff;
}

.area-sidebar a {
    display: block;
    padding: 14px 16px;
    margin-bottom: 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    line-height: 1.35;
}

.area-sidebar a:hover {
    background: rgba(255, 255, 255, .16);
}

.area-sidebar hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
    margin: 22px 0;
}

.area-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.area-location-card {
    padding: 34px;
}

.area-location-card span {
    display: block;
    margin-bottom: 12px;
    color: #a9865f;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.area-location-card h2 {
    margin: 0 0 12px;
    color: #2b1713;
    font-size: 30px;
    line-height: 1.05;
}

.area-location-card p {
    color: #74645d;
    line-height: 1.7;
}

.area-location-card a {
    display: inline-flex;
    margin-top: 10px;
    color: #2b1713;
    font-weight: 900;
    text-decoration: none;
}

.area-location-card a:hover {
    text-decoration: underline;
}

.area-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.area-steps article,
.area-faq-grid article {
    padding: 30px;
}

.area-steps span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #2b1713;
    color: #fff;
    font-weight: 900;
    margin-bottom: 18px;
}

.area-steps h3,
.area-faq-grid h3 {
    margin: 0 0 10px;
    color: #2b1713;
}

.area-steps p,
.area-faq-grid p {
    margin: 0;
    color: #74645d;
    line-height: 1.7;
}

.area-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.area-cta {
    padding: 84px 0;
    background: #2b1713;
    color: #fff;
    text-align: center;
}

.area-cta-inner {
    max-width: 760px;
}

.area-cta h2 {
    margin: 12px 0 14px;
    color: #fff;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1;
    letter-spacing: -0.045em;
}

.area-cta p {
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, .76);
    line-height: 1.7;
}

.area-cta .eyebrow {
    color: rgba(255, 255, 255, .72);
}

@media (max-width: 980px) {
    .area-hero {
        padding: 58px 0 70px;
    }

    .area-hero-grid,
    .area-grid,
    .area-steps,
    .area-faq-grid,
    .area-card-grid {
        grid-template-columns: 1fr;
    }

    .area-hero-image img {
        height: 340px;
    }

    .area-copy-card {
        padding: 30px;
    }

    .area-sidebar {
        position: static;
    }
}

@media (max-width: 560px) {
    .area-hero-content h1 {
        font-size: 42px;
    }

    .area-hero-image img {
        height: 280px;
    }

    .area-actions {
        flex-direction: column;
    }

    .area-btn {
        width: 100%;
    }

    .area-copy-card,
    .area-highlight,
    .area-location-card,
    .area-steps article,
    .area-faq-grid article {
        padding: 24px;
    }
}

.pf-home-areas {
    padding: 90px 0;
    background: #fffaf7;
}

.pf-home-areas-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 50px;
    align-items: center;
}

.pf-home-areas-content h2 {
    margin: 12px 0 18px;
    color: #2b1713;
    font-size: clamp(34px, 4.5vw, 58px);
    line-height: 1;
    letter-spacing: -0.045em;
}

.pf-home-areas-content p {
    color: #74645d;
    line-height: 1.75;
    max-width: 650px;
}

.pf-home-areas-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.pf-home-areas-grid a {
    display: block;
    padding: 28px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid rgba(43, 23, 19, 0.08);
    box-shadow: 0 16px 40px rgba(43, 23, 19, 0.05);
    text-decoration: none;
}

.pf-home-areas-grid a span {
    display: block;
    margin-bottom: 10px;
    color: #a9865f;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.pf-home-areas-grid a strong {
    display: block;
    color: #2b1713;
    font-size: 26px;
    line-height: 1;
}

.pf-home-areas-grid a:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(43, 23, 19, 0.09);
}

@media (max-width: 900px) {

    .pf-home-areas-inner,
    .pf-home-areas-grid {
        grid-template-columns: 1fr;
    }
}

.training-finance-notice {
    margin: 24px 0 30px;
    padding: 18px 22px;
    background: #f8f5f1;
    border: 1px solid rgba(198, 167, 125, .25);
    border-radius: 18px;
}

.training-finance-notice strong {
    display: block;
    margin-bottom: 8px;
    color: #2B1B17;
    font-weight: 800;
}

.training-finance-notice p {
    margin: 0;
    color: #6d615d;
    font-size: 15px;
    line-height: 1.6;
}

.training-success-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.training-success-grid img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .3s ease;
}

.training-success-grid img:hover {
    transform: translateY(-5px);
}

@media (max-width:768px) {

    .training-success-grid {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .training-success-grid img {
        min-width: 90%;
        max-width: 90%;
        height: 300px;
        object-fit: cover;
        scroll-snap-align: center;
        flex: 0 0 auto;
    }

    .training-success-grid::-webkit-scrollbar {
        display: none;
    }
}

.about-gallery {
    padding: 90px 0;
    background: #f8f2ee;
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 45px;
}

.about-gallery-grid img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    transition: .3s ease;
}

.about-gallery-grid img:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {

    .about-gallery {
        padding: 70px 0;
    }

    .about-gallery-grid {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 12px;
        scroll-behavior: smooth;
    }

    .about-gallery-grid img {
        min-width: 85%;
        max-width: 85%;
        height: 320px;
        flex: 0 0 auto;
        scroll-snap-align: center;
    }

    .about-gallery-grid::-webkit-scrollbar {
        display: none;
    }
}

.pf-results-section {
    background: #fff;
}

.pf-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 45px;
}

.pf-result-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    min-height: 360px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
    background: #2d1814;
}

.pf-result-card img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease, opacity .4s ease;
}

.pf-result-overlay {
    position: absolute;
    inset: 0;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top,
            rgba(45, 24, 20, .88),
            rgba(45, 24, 20, .35),
            rgba(45, 24, 20, .05));
    color: #fff;
    opacity: 0;
    transition: opacity .3s ease;
}

.pf-result-card:hover .pf-result-overlay {
    opacity: 1;
}

.pf-result-card:hover img {
    transform: scale(1.05);
    opacity: .9;
}

.pf-result-overlay span {
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 800;
    color: #d7b07a;
    margin-bottom: 8px;
}

.pf-result-overlay h3 {
    margin: 0 0 8px;
    font-size: 26px;
    color: #fff;
}

.pf-result-overlay p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .9);
}

@media (max-width: 900px) {
    .pf-results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pf-results-grid {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 12px;
    }

    .pf-result-card {
        min-width: 85%;
        max-width: 85%;
        min-height: 340px;
        scroll-snap-align: center;
        flex: 0 0 auto;
    }

    .pf-result-card img {
        min-height: 340px;
    }

    .pf-result-overlay {
        opacity: 1;
        padding: 22px;
    }

    .pf-result-overlay h3 {
        font-size: 22px;
    }

    .pf-results-grid::-webkit-scrollbar {
        display: none;
    }
}

.about-sian-feature {
    padding: 100px 0;
    background: #fff;
}

.about-sian-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-sian-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: 0 22px 55px rgba(43, 23, 18, 0.12);
}

.about-sian-content h2 {
    margin: 12px 0 24px;
    color: #2B1712;
}

.about-sian-content p {
    color: #7A6B66;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-sian-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.about-sian-points span {
    background: #FCF8F3;
    border: 1px solid rgba(43, 23, 18, 0.08);
    color: #2B1712;
    padding: 14px 16px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
}

@media (max-width: 900px) {
    .about-sian-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 600px) {
    .about-sian-feature {
        padding: 70px 0;
    }

    .about-sian-image img {
        border-radius: 24px;
    }

    .about-sian-points {
        grid-template-columns: 1fr;
    }
}

.pf-hidden-result {
    display: none;
}

.pf-hidden-result.show {
    display: block;
}

.pf-results-actions {
    text-align: center;
    margin-top: 40px;
}