/* ===================================
   HAIRDO BY NEO — styles.css
   Theme: Ivory stone × Brushed gold (matches the wordmark)
   Fonts: Italiana + Figtree
=================================== */

:root {
    --navy:        #f6f4f0;   /* main surface (warm ivory) */
    --navy-mid:    #ece7de;   /* alternating */
    --navy-light:  #e3ddd0;   /* raised panel */
    --gold:        #b8935a;   /* brushed gold accent, from the logo */
    --gold-light:  #d6b481;
    --gold-dark:   #8a6a3a;
    --cream:       #faf8f4;
    --cream-dark:  #e9e3d6;
    --white:       #14120f;   /* ink, warmed toward the logo black */
    --text-muted:  #7a7d86;
    --text-body:   #4a4e58;
    --border:      rgba(18,20,26,0.08);
    --border-strong: rgba(18,20,26,0.14);
    --shadow-sm:   0 2px 12px rgba(18,20,26,0.06);
    --shadow-md:   0 12px 40px rgba(18,20,26,0.1);
    --transition:  0.4s cubic-bezier(0.22,1,0.36,1);
    --font-display: 'Italiana', Georgia, serif;
    --font-body: 'Figtree', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-weight: 400;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.65;
}

/* ---- Preloader ---- */
.preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hide { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo-img {
    display: block;
    height: clamp(64px, 9vw, 90px);
    width: auto;
    margin: 0 auto 18px;
}
.preloader-wordmark {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 22px;
}
.preloader-wordmark em { font-style: normal; color: #fff; }
.preloader-line {
    width: 0; height: 1px; background: var(--gold);
    margin: 0 auto; animation: lineExpand 1.4s ease forwards 0.3s;
}
@keyframes lineExpand { to { width: 100px; } }

/* Film grain */
.grain {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 9998;
    opacity: 0.04;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- Header ---- */
#header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 0 4%;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition);
}
#header.scrolled {
    background: rgba(245,244,242,0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--border);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
    border-bottom: 1px solid transparent;
    transition: height var(--transition);
}
#header.scrolled .header-inner { height: 64px; }

.logo a, .logo-word {
    display: inline-flex; align-items: center; gap: 0.4em;
    text-decoration: none; color: var(--white);
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
}
.logo-word em { font-style: normal; color: var(--gold); }
.logo-word--footer { font-size: 1.55rem; margin-bottom: 14px; display: inline-flex; }
.logo-mark-icon {
    display: block;
    height: 40px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    transition: height var(--transition);
}
#header.scrolled .logo-mark-icon { height: 34px; }
.logo-word--footer .logo-mark-icon { height: 52px; }
.logo-img {
    display: block;
    height: 56px;
    width: auto;
    object-fit: contain;
}
#header.scrolled .logo-img { height: 48px; }
.logo-img--footer { height: 96px; margin-bottom: 4px; }
.logo-cross { color: var(--gold); font-size: 1rem; }
.logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 400; letter-spacing: 0.04em;
}
.logo-accent { color: var(--gold); }

#header nav { display: flex; align-items: center; gap: 28px; }
#nav-menu {
    display: flex; gap: 28px; list-style: none;
}
#nav-menu a {
    text-decoration: none; color: var(--text-body);
    font-size: 0.8rem; letter-spacing: 0.04em;
    font-weight: 500; transition: color var(--transition);
}
#nav-menu a:hover { color: var(--gold); }

.mobile-menu-btn {
    display: none; font-size: 1.2rem; cursor: pointer; color: var(--white);
}
.nav-menu-cta { display: none; }

/* ---- Buttons ---- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    text-decoration: none; cursor: pointer; border: none;
    border-radius: 999px;
    transition: all var(--transition);
}
.btn-gold {
    background: var(--gold); color: #fff;
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-1px); }

.btn-outline {
    background: transparent;
    border: 1.5px solid rgba(18,20,26,0.22); color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-light {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.55); color: #fff;
}
.btn-outline-light:hover { background: #fff; color: var(--gold); border-color: #fff; }

.btn-full { width: 100%; justify-content: center; }
.nav-cta { padding: 10px 20px; font-size: 0.72rem; }

/* ---- Shared ---- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 4%; }

.section-eyebrow {
    display: block;
    font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 14px; font-weight: 600;
}
.section-header h2, h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 400; line-height: 1.12;
}
h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 em { font-style: italic; color: var(--gold); }
h1 em { font-style: italic; color: var(--gold); }

.section-intro {
    max-width: 420px;
    color: var(--text-body); margin-top: 16px;
    font-size: 0.98rem;
}
.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }
.section-header--center .section-intro { margin: 16px auto 0; }

/* ---- Hero ---- */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: flex-end; padding: 0 4% 10vh;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    overflow: hidden;
}
.hero-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1.6s ease;
    background-size: cover;
    background-position: center;
    animation: heroKenBurns 20s ease-in-out infinite alternate;
}
.hero-slide.active {
    opacity: 1;
    z-index: 1;
}
.hero-slide img {
    position: absolute; width: 0; height: 0;
    opacity: 0; pointer-events: none;
}
.hero-slide:nth-child(2) { animation-delay: -6s; }
.hero-slide:nth-child(3) { animation-delay: -12s; }
.hero-slide:nth-child(4) { animation-delay: -3s; }
@keyframes heroKenBurns {
    0%   { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(-1.5%, -1%); }
}
.hero-bg-overlay {
    position: absolute; inset: 0; z-index: 2;
    background:
        linear-gradient(180deg, rgba(18,20,26,0.15) 0%, rgba(18,20,26,0.55) 55%, rgba(18,20,26,0.88) 100%),
        linear-gradient(90deg, rgba(18,20,26,0.45) 0%, transparent 55%);
    pointer-events: none;
}
.hero-content {
    position: relative; z-index: 3; max-width: 720px;
    animation: heroRise 1s var(--transition) both;
}
@keyframes heroRise {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-brand {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
    opacity: 0.92;
}
.hero-eyebrow {
    display: block;
    font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 24px;
}
.hero h1 {
    font-size: clamp(2.8rem, 7vw, 5.2rem);
    font-weight: 400; line-height: 1.02;
    margin-bottom: 20px;
    color: #fff;
}
.hero h1 em { color: var(--gold-light); font-style: normal; }
.typed-cursor {
    color: var(--gold-light);
    font-weight: 300;
    animation: typedBlink 0.9s step-end infinite;
}
@keyframes typedBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.hero-desc {
    font-size: 1.05rem; color: rgba(255,255,255,0.78);
    max-width: 420px; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn-outline {
    border-color: rgba(255,255,255,0.45);
    color: #fff;
}
.hero .btn-outline:hover {
    border-color: #fff;
    background: #fff;
    color: var(--white);
}
.hero-stats {
    display: flex; align-items: center; gap: 0; flex-wrap: wrap;
    padding-top: 32px; margin-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.25);
}
.hero-stat { padding: 0 28px; }
.hero-stat:first-child { padding-left: 0; }
.stat-n {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 400; color: var(--gold-light);
}
.stat-n--text { font-variant-numeric: tabular-nums; }
.stat-l {
    display: block; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.72); margin-top: 4px;
}
.hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.25); }
.hero-scroll {
    position: absolute; bottom: 36px; right: 4%; z-index: 3;
    width: 28px; height: 44px;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 20px;
    background: transparent;
    cursor: pointer;
    padding: 0;
}
.hero-scroll span {
    display: block;
    width: 4px; height: 8px;
    margin: 10px auto 0;
    border-radius: 4px;
    background: #fff;
    animation: scrollBounce 1.8s ease infinite;
}
@keyframes scrollBounce { 0%,100%{transform:translateY(0);opacity:1} 50%{transform:translateY(10px);opacity:0.4} }

/* ---- Ticker ---- */
.ticker {
    background: var(--white);
    color: #fff;
    overflow: hidden;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.ticker-track {
    display: flex;
    gap: 28px;
    width: max-content;
    animation: tickerMove 32s linear infinite;
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}
.ticker-dot { color: var(--gold); opacity: 0.85; }
@keyframes tickerMove {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---- Services ---- */
.services {
    padding: 110px 0;
    background: var(--navy);
}
.services-layout {
    display: grid;
    grid-template-columns: minmax(220px, 0.85fr) 1.4fr;
    gap: 64px;
    align-items: start;
}
.services-intro .btn { margin-top: 28px; }
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: transparent;
    border: none;
}
.service-card {
    background: transparent;
    padding: 22px 8px;
    border-bottom: 1px solid var(--border-strong);
    transition: padding var(--transition), background var(--transition);
    cursor: pointer; position: relative; overflow: hidden;
    text-align: left;
    display: grid;
    grid-template-columns: 48px 1fr auto;
    grid-template-areas:
        "num title link"
        "num desc  desc";
    column-gap: 16px;
    row-gap: 6px;
}
.service-card:first-child { border-top: 1px solid var(--border-strong); }
.service-card-bg {
    position: absolute; inset: 0;
    background-image: var(--service-img);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.55s ease, transform 0.7s ease;
    z-index: 0;
}
.service-card-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(245,244,242,0.97) 0%, rgba(245,244,242,0.88) 55%, rgba(245,244,242,0.72) 100%);
}
.service-card:hover .service-card-bg {
    opacity: 1;
    transform: scale(1);
}
.service-card:hover {
    transform: none;
    box-shadow: none;
    padding-left: 16px;
}
.service-card > *:not(.service-card-bg) {
    position: relative;
    z-index: 1;
}
.service-card:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}
.service-card::before { display: none; }
.service-num {
    grid-area: num;
    align-self: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
}
.service-icon { display: none; }
.service-card h3 {
    grid-area: title;
    align-self: center;
    font-family: var(--font-display);
    font-size: 1.55rem; font-weight: 400;
    margin-bottom: 0; color: var(--white);
}
.service-card p {
    grid-area: desc;
    font-size: 0.88rem; color: var(--text-body);
    line-height: 1.55; margin-bottom: 0;
}
.service-link {
    grid-area: link;
    align-self: center;
    font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--gold); text-decoration: none;
    display: flex; align-items: center; gap: 8px;
    background: none; border: none; padding: 0;
    cursor: pointer; font-family: inherit; font-weight: 600;
    white-space: nowrap;
    justify-self: end;
}

/* ---- Service detail modal ---- */
.service-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}
.service-modal.open {
    opacity: 1;
    visibility: visible;
}
.service-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(22,32,43,0.55);
    backdrop-filter: blur(4px);
}
.service-modal-panel {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    max-height: min(88vh, 720px);
    background: var(--navy);
    border: 1px solid var(--border-strong);
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    overflow: hidden;
    transform: translateY(16px) scale(0.98);
    transition: transform var(--transition);
}
.service-modal.open .service-modal-panel {
    transform: translateY(0) scale(1);
}
.service-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--white);
    color: var(--navy);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), color var(--transition);
}
.service-modal-close:hover {
    background: var(--gold);
    color: #fff;
}
.service-modal-media {
    background: var(--navy-light);
    min-height: 280px;
}
.service-modal-media img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}
.service-modal-content {
    padding: 36px 32px 28px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.service-modal-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.service-modal-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 14px;
    padding-right: 36px;
}
.service-modal-detail {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 22px;
}
.service-modal-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    margin-bottom: 28px;
}
.service-modal-features li {
    font-size: 0.82rem;
    color: var(--text-body);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.service-modal-features li i {
    color: var(--gold);
    font-size: 0.75rem;
    margin-top: 4px;
    flex-shrink: 0;
}
.service-modal-cta {
    margin-top: auto;
    padding-top: 8px;
}
.service-modal-cta .btn { width: 100%; justify-content: center; }

@media (max-width: 768px) {
    .service-modal-panel {
        grid-template-columns: 1fr;
        max-height: 92vh;
        overflow-y: auto;
    }
    .service-modal-media { min-height: 200px; }
    .service-modal-media img { min-height: 200px; }
    .service-modal-features { grid-template-columns: 1fr; }
}

/* ---- About ---- */
.about {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0; min-height: 640px;
}
.about-image-col { position: relative; overflow: hidden; }
.about-img-wrap { width: 100%; height: 100%; min-height: 500px; position: relative; }
.about-slideshow {
    position: absolute; inset: 0;
}
.about-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.about-slide.active { opacity: 1; }
.about-slide img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transform: scale(1);
    transition: transform 8s ease;
}
.about-slide.active img { transform: scale(1.06); }
.about-badge {
    position: absolute; bottom: 40px; right: -1px; z-index: 2;
    background: var(--gold); color: var(--navy);
    padding: 20px 28px; text-align: center;
}
.badge-n {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 600; line-height: 1;
}
.badge-l { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; }
.about-content {
    background: var(--navy-light);
    padding: 80px 6% 80px;
    display: flex; flex-direction: column; justify-content: center;
}
.about-content p {
    font-size: 0.92rem; color: var(--text-body);
    margin-bottom: 20px;
}
.about-features { display: flex; flex-direction: column; gap: 20px; margin: 32px 0 40px; }
.about-feature {
    display: flex; gap: 16px; align-items: flex-start;
}
.about-feature i {
    color: var(--gold); font-size: 1rem; margin-top: 3px; flex-shrink: 0;
}
.about-feature h4 {
    font-family: var(--font-display);
    font-size: 1.05rem; font-weight: 500; margin-bottom: 4px;
}
.about-feature p { font-size: 0.82rem; margin: 0; }

/* ---- Process ---- */
.process {
    padding: 100px 0;
    background: var(--navy);
}
.process-steps {
    display: flex; align-items: flex-start; justify-content: center;
    gap: 0; flex-wrap: wrap;
}
.process-step {
    flex: 1; min-width: 180px; max-width: 240px;
    text-align: center; padding: 0 24px;
}
.step-num {
    font-family: var(--font-display);
    font-size: 2.8rem; font-weight: 300; color: var(--gold);
    line-height: 1; margin-bottom: 16px;
    border-bottom: 1px solid rgba(184,147,90,0.3);
    padding-bottom: 16px; display: inline-block; min-width: 60px;
}
.process-step h3 {
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 500;
    margin-bottom: 10px; color: var(--white);
}
.process-step p { font-size: 0.82rem; color: var(--text-body); }
.process-arrow {
    color: rgba(184,147,90,0.4); font-size: 1rem;
    padding-top: 30px; flex-shrink: 0;
}

/* ---- Team ---- */
.team {
    padding: 120px 0;
    background: var(--navy-mid);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px; background: rgba(20,32,46,0.07);
    border: 1px solid rgba(20,32,46,0.07);
}
.team-card {
    background: var(--navy-mid); overflow: hidden;
    transition: background var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.team-panel {
    background: var(--navy-light);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 100%;
}
.team-panel--spotlight {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    min-height: 560px;
    border: 1px solid var(--border);
}
.team-panel--spotlight .team-panel-accent {
    height: 100%;
    min-height: 320px;
}
.team-panel--spotlight .team-panel-accent img { opacity: 1; object-position: center 20%; }
.team-panel--spotlight .team-panel-accent::after { background: none; }
.team-panel--spotlight .team-panel-body { padding: 56px 56px 48px; justify-content: center; }
.team-panel--spotlight .team-panel-body h3 { font-size: 1.9rem; }
@media (max-width: 860px) {
    .team-panel--spotlight { grid-template-columns: 1fr; min-height: auto; }
    .team-panel--spotlight .team-panel-accent { height: 320px; }
    .team-panel--spotlight .team-panel-body { padding: 40px 28px; }
}
.team-panel-accent {
    height: 120px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
.team-panel-accent::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 20%, var(--navy-light) 100%);
}
.team-panel-accent img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
    opacity: 0.55;
}
.team-panel-body {
    padding: 28px 24px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.team-panel-body .section-eyebrow {
    margin-bottom: 10px;
    font-size: 0.62rem;
}
.team-panel-body h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.2;
}
.team-panel-body > p {
    font-size: 0.82rem;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 20px;
}
.team-panel-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}
.team-panel-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-body);
    line-height: 1.45;
}
.team-panel-list li i {
    color: var(--gold);
    font-size: 0.85rem;
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}
.team-panel-stats {
    display: flex;
    gap: 24px;
    padding: 18px 0;
    margin-bottom: 20px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.team-panel-stat-n {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--gold);
    line-height: 1;
}
.team-panel-stat-l {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}
.team-panel-cta {
    margin-top: auto;
    width: 100%;
    justify-content: center;
    font-size: 0.68rem;
    padding: 11px 20px;
}
.team-card:hover { background: var(--navy-light); }
.team-card-img {
    width: 100%; aspect-ratio: 3/4; overflow: hidden;
}
.team-card-img img {
    width: 100%; height: 100%; object-fit: cover; object-position: top;
    transition: transform 0.6s ease;
}
.team-card-img--contain { position: relative; background: var(--navy-light); }
.team-card-img--contain::before {
    content: ''; position: absolute; inset: 0;
    background-image: var(--card-bg);
    background-size: cover; background-position: center;
    filter: blur(20px) brightness(0.92); transform: scale(1.15);
    z-index: 0;
}
.team-card-img--contain img {
    position: relative; z-index: 1;
    object-fit: contain; object-position: center;
}
.team-card:hover .team-card-img img { transform: scale(1.04); }
.team-card-body {
    flex: 1;
    min-height: 220px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.team-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem; font-weight: 500; margin-bottom: 4px;
}
.team-card-body .role {
    font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold);
}

/* ---- Lightbox (shared close/caption, used by the video lightbox) ---- */
.lightbox-caption {
    margin-top: 16px;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
}
.lightbox-close {
    position: absolute; top: 20px; right: 20px;
    width: 44px; height: 44px;
    border: 1px solid rgba(255,255,255,0.25);
    background: transparent;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition);
}
.lightbox-close:hover { background: var(--gold); border-color: var(--gold); }

/* ---- Video Lookbook ---- */
.videos {
    padding: 100px 0 120px;
    background: var(--navy-mid);
}
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}
.video-item {
    position: relative;
    aspect-ratio: 3/4;
    border: none;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    background: var(--navy-light);
    transition: transform var(--transition), box-shadow var(--transition);
}
.video-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-md);
}
.video-item video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}
.video-item-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(22,32,43,0.8) 0%, transparent 55%);
    display: flex; flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
    color: #fff;
    text-align: left;
}
.video-item-overlay i {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    font-size: 0.85rem;
    margin-bottom: 10px;
    backdrop-filter: blur(4px);
    transition: background var(--transition), border-color var(--transition);
}
.video-item:hover .video-item-overlay i {
    background: var(--gold);
    border-color: var(--gold);
}
.video-item-overlay span {
    font-size: 0.82rem;
    line-height: 1.4;
}

.video-lightbox {
    position: fixed; inset: 0; z-index: 1100;
    display: flex; align-items: center; justify-content: center;
    background: rgba(22,32,43,0.95);
    backdrop-filter: blur(8px);
    opacity: 0; visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    padding: 24px;
}
.video-lightbox.open { opacity: 1; visibility: visible; }
.video-lightbox-content {
    max-width: min(420px, 100%);
    text-align: center;
    transform: scale(0.95);
    transition: transform var(--transition);
}
.video-lightbox.open .video-lightbox-content { transform: scale(1); }
.video-lightbox-content video {
    max-width: 100%;
    max-height: 80vh;
    width: 100%;
    display: block;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--shadow-md);
    background: #000;
}

/* ---- CTA Banner ---- */
.cta-banner {
    background: var(--gold);
    padding: 80px 5%;
}
.cta-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: #fff; font-weight: 400; margin-bottom: 12px;
}
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 32px; font-size: 0.95rem; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-gold { background: #fff; color: var(--gold); }
.cta-banner .btn-gold:hover { background: var(--cream); }

/* ---- Contact ---- */
.contact {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 0; background: var(--navy-mid);
}
.contact-info {
    padding: 80px 6%;
    background: var(--navy-light);
    display: flex; flex-direction: column; justify-content: center;
}
.contact-info p { font-size: 0.9rem; color: var(--text-body); margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item i { color: var(--gold); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
.contact-item h4 {
    font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 4px;
}
.contact-item p { font-size: 0.88rem; margin: 0; }
.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}
.contact-item a:hover { color: var(--gold); }
.contact-whatsapp-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.contact-whatsapp-links a {
    font-size: 0.88rem;
    line-height: 1.45;
}
.contact-whatsapp-links a span {
    color: var(--text-muted);
    font-size: 0.82rem;
}
.footer-col a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }

.contact-form-wrap { padding: 80px 6%; }
.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.6rem; font-weight: 400; margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label {
    display: block;
    font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 8px;
}
.form-control {
    width: 100%;
    background: #ffffff;
    border: 1px solid #dfe5ec;
    color: var(--white);
    padding: 12px 16px; font-family: var(--font-body);
    font-size: 0.9rem; font-weight: 300;
    outline: none; transition: border-color var(--transition);
    appearance: none;
}
.form-control:focus { border-color: var(--gold); background: #fff; }
.form-control::placeholder { color: #9aa0a8; }
select.form-control option { background: var(--navy-mid); }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-success {
    background: rgba(184,147,90,0.08); border: 1px solid var(--gold);
    color: var(--gold); padding: 14px 16px; margin-top: 16px;
    font-size: 0.85rem; display: flex; align-items: center; gap: 10px;
}

/* ---- Footer ---- */
footer { background: var(--navy); }
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding: 72px 5% 48px;
    border-bottom: 1px solid rgba(20,32,46,0.08);
}
.footer-logo {
    margin-bottom: 16px;
    display: flex; align-items: center;
}
.footer-col p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 8px; }
.footer-col h4 {
    font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    text-decoration: none; color: var(--text-muted); font-size: 0.83rem;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-links a {
    width: 36px; height: 36px;
    border: 1px solid rgba(20,32,46,0.15);
    color: var(--text-muted);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; text-decoration: none;
    transition: all var(--transition);
}
.social-links a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer-bottom {
    padding: 20px 5%;
    text-align: center;
    font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.1em;
}

/* ---- Back to top ---- */
.back-to-top {
    position: fixed; bottom: 32px; right: 32px; z-index: 50;
    width: 44px; height: 44px;
    background: var(--gold); color: var(--navy);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; cursor: pointer;
    opacity: 0; visibility: hidden;
    transition: all var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold-light); }

/* ---- Appointment page ---- */
.page-hero {
    padding: 160px 5% 80px;
    background: var(--navy-mid);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero--image {
    background: linear-gradient(135deg, rgba(255,255,255,0.94) 0%, rgba(250,247,244,0.88) 100%),
                url('images/braids-16.jpeg') center 20%/cover no-repeat;
}
.page-hero--image > * { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 12px; }
.page-hero p { color: var(--text-body); font-size: 0.95rem; max-width: 540px; margin: 0 auto; }

.appt-section {
    display: grid; grid-template-columns: 1.2fr 1fr;
    gap: 0; min-height: 80vh;
}
.appt-form-col { padding: 72px 5%; background: var(--navy-mid); }
.appt-info-col {
    padding: 72px 5%; background: var(--navy-light);
    display: flex; flex-direction: column; justify-content: center;
}
.appt-form-col h2, .appt-info-col h2 {
    font-family: var(--font-display);
    font-size: 1.8rem; font-weight: 400; margin-bottom: 32px;
}

/* ---- Booking policy ---- */
.policy {
    padding: 90px 0 100px;
    background: var(--navy);
}
.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.policy-card {
    background: var(--navy-mid);
    border: 1px solid var(--border);
    padding: 28px 26px;
}
.policy-card i {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 16px;
    display: block;
}
.policy-card h4 {
    font-family: var(--font-display);
    font-size: 1.15rem; font-weight: 400;
    margin-bottom: 8px; color: var(--white);
}
.policy-card p {
    font-size: 0.86rem; color: var(--text-body);
    line-height: 1.6;
}
.policy-card--highlight {
    background: var(--white);
    border-color: var(--white);
}
.policy-card--highlight i,
.policy-card--highlight h4 { color: var(--gold-light); }
.policy-card--highlight p { color: rgba(255,255,255,0.75); }
.policy-pay-list {
    list-style: none;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.policy-pay-list li {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.06);
}
.policy-pay-list span {
    font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}
.policy-pay-list strong {
    font-family: var(--font-display);
    font-size: 1.05rem; font-weight: 400;
    color: #fff;
    letter-spacing: 0.02em;
}
@media (max-width: 480px) {
    .policy { padding: 64px 0 72px; }
    .policy-card { padding: 22px 20px; }
}

/* ===================================
   DASHBOARDS — Admin & Doctor
=================================== */
.dash-body {
    display: flex;
    min-height: 100vh;
    background: var(--navy-mid);
    overflow-x: hidden;
}

/* ---- Sidebar ---- */
.dash-sidebar {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: 268px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: linear-gradient(175deg, #1f1c17 0%, #14120f 55%, #0c0a08 100%);
    color: rgba(255,255,255,0.92);
    border-right: 1px solid rgba(255,255,255,0.06);
    transition: transform var(--transition);
}
.doctor-sidebar {
    background: linear-gradient(175deg, var(--gold-dark) 0%, #1f1c17 48%, #14120f 100%);
}

.dash-sidebar-logo {
    flex-shrink: 0;
    padding: 28px 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dash-sidebar-logo .logo-cross {
    display: block;
    color: var(--gold-light);
    font-size: 0.95rem;
    margin-bottom: 6px;
}
.dash-sidebar-logo .logo-text {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.25;
    color: #fff;
}
.dash-sidebar-logo .logo-accent { color: var(--gold-light); }
.dash-role {
    display: block;
    margin-top: 8px;
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.dash-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 16px 0 24px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.dash-nav::-webkit-scrollbar { width: 5px; }
.dash-nav::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
}
.dash-nav-section {
    padding: 18px 24px 8px;
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}
.dash-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 24px;
    margin: 2px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.72);
    transition: all var(--transition);
}
.dash-nav a i {
    width: 18px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    transition: color var(--transition);
}
.dash-nav a:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}
.dash-nav a:hover i { color: var(--gold-light); }
.dash-nav a.active {
    background: rgba(184,147,90,0.35);
    color: #fff;
    box-shadow: inset 3px 0 0 var(--gold-light);
}
.dash-nav a.active i { color: var(--gold-light); }

.dash-sidebar-footer {
    flex-shrink: 0;
    padding: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.dash-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 6px;
    background: rgba(0,0,0,0.15);
}
.dash-user-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(85,125,169,0.5);
}
.dash-user-avatar img { width: 100%; height: 100%; object-fit: cover; }
.dash-user-name {
    font-size: 0.85rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
}
.dash-user-role {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.04em;
}
.dash-logout {
    margin-left: auto;
    background: none;
    border: none;
    color: rgba(255,255,255,0.45);
    cursor: pointer;
    padding: 6px;
    font-size: 0.9rem;
    transition: color var(--transition);
}
.dash-logout:hover { color: #fff; }

/* ---- Main layout ---- */
.dash-main {
    flex: 1;
    margin-left: 268px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.dash-topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 32px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.dash-topbar-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
}
.dash-topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.dash-sidebar-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text-body);
    padding: 4px;
}

.dash-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--navy-mid);
    border: 1px solid var(--border-strong);
    padding: 9px 16px;
    min-width: 220px;
    transition: border-color var(--transition);
}
.dash-search:focus-within { border-color: var(--gold); }
.dash-search input {
    border: none;
    background: transparent;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--white);
    width: 100%;
}
.dash-search input::placeholder { color: var(--text-muted); }

.dash-notif {
    position: relative;
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-strong);
    background: var(--navy);
    color: var(--text-body);
    cursor: pointer;
    transition: all var(--transition);
}
.dash-notif:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.notif-badge {
    position: absolute;
    top: -4px; right: -4px;
    min-width: 18px; height: 18px;
    padding: 0 5px;
    background: var(--gold);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.dash-content {
    padding: 28px 32px 48px;
    flex: 1;
}

/* ---- Welcome banner ---- */
.dash-welcome {
    background: var(--navy);
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
    padding: 28px 32px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}
.doctor-welcome {
    background: linear-gradient(105deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-left-color: var(--gold-light);
}
.dash-welcome-date {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.dash-welcome h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 8px;
}
.dash-welcome p {
    font-size: 0.92rem;
    color: var(--text-body);
    max-width: 640px;
}
.dash-welcome strong { color: var(--gold); font-weight: 400; }

/* ---- Stats ---- */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}
.stat-card {
    background: var(--navy);
    border: 1px solid var(--border);
    padding: 22px 24px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), border-color var(--transition);
}
.stat-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(184,147,90,0.25);
}
.stat-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 14px;
}
.stat-card-icon {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184,147,90,0.1);
    color: var(--gold);
    font-size: 1rem;
}
.doctor-stat-icon { background: rgba(184,147,90,0.12); }
.stat-change {
    font-size: 0.72rem;
    color: var(--gold);
    letter-spacing: 0.04em;
}
.stat-change--ok { color: #3d7a52; }
.stat-card-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-card-label {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ---- Cards & grid ---- */
.dash-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
    margin-bottom: 28px;
}
.dash-card {
    background: var(--navy);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.dash-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    background: var(--navy-mid);
}
.dash-card-head h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--white);
}
.dash-card-head a {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
}
.dash-card-head a:hover { color: var(--gold-light); }
.dash-card-body { padding: 0; }

/* ---- Tables ---- */
.appt-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.86rem;
}
.appt-table thead {
    background: var(--navy-mid);
}
.appt-table th {
    text-align: left;
    padding: 12px 20px;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    border-bottom: 1px solid var(--border);
}
.appt-table td {
    padding: 14px 20px;
    color: var(--text-body);
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}
.appt-table tbody tr:hover td { background: rgba(184,147,90,0.04); }
.appt-table tbody tr:last-child td { border-bottom: none; }
.appt-table strong { color: var(--white); font-weight: 400; }

.appt-status {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
}
.status-confirmed {
    background: rgba(184,147,90,0.12);
    color: var(--gold-dark);
}
.status-pending {
    background: rgba(244,240,232,0.9);
    color: #8a6d3b;
    border: 1px solid var(--cream-dark);
}
.status-cancelled {
    background: rgba(180,69,47,0.08);
    color: #b4452f;
}

.appt-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    border: 1px solid var(--border-strong);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    text-decoration: none;
    font-size: 0.78rem;
    transition: all var(--transition);
}
.appt-action:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(184,147,90,0.06);
}

/* ---- Quick actions ---- */
.quick-actions { display: flex; flex-direction: column; }
.quick-action-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}
.quick-action-item:last-child { border-bottom: none; }
.quick-action-item:hover { background: rgba(184,147,90,0.05); }
.qa-icon {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184,147,90,0.1);
    color: var(--gold);
    flex-shrink: 0;
}
.qa-text { flex: 1; min-width: 0; }
.qa-text strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 2px;
}
.qa-text span {
    font-size: 0.78rem;
    color: var(--text-muted);
}
.qa-arrow { color: var(--text-muted); font-size: 0.75rem; }
.quick-action-item:hover .qa-arrow { color: var(--gold); }

/* ---- Mini calendar ---- */
.mini-calendar { padding: 8px 4px 4px; }
.cal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding: 0 8px;
}
.cal-head h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--white);
}
.cal-nav { display: flex; gap: 6px; }
.cal-nav button {
    width: 30px; height: 30px;
    border: 1px solid var(--border-strong);
    background: var(--navy);
    color: var(--text-body);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: all var(--transition);
}
.cal-nav button:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
    font-size: 0.78rem;
}
.cal-day-name {
    padding: 6px 0;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-body);
    cursor: default;
    border-radius: 4px;
    transition: background var(--transition);
}
.cal-day.other-month { color: var(--text-muted); opacity: 0.45; }
.cal-day.today {
    background: var(--gold);
    color: #fff;
    font-weight: 500;
}
.cal-day.has-appt:not(.today) {
    background: rgba(184,147,90,0.12);
    color: var(--gold-dark);
    font-weight: 500;
}

/* ---- Doctor schedule & patients ---- */
.today-schedule { padding: 8px 0; }
.schedule-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}
.schedule-item:last-child { border-bottom: none; }
.schedule-item:hover { background: rgba(184,147,90,0.04); }
.schedule-time {
    flex-shrink: 0;
    width: 72px;
    text-align: center;
}
.schedule-time strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--white);
}
.schedule-time span {
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}
.schedule-divider {
    width: 1px;
    height: 40px;
    background: var(--border-strong);
    flex-shrink: 0;
}
.schedule-body {
    flex: 1;
    min-width: 0;
}
.schedule-body strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 2px;
}
.schedule-body span {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.schedule-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.schedule-btn {
    padding: 7px 14px;
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
}
.schedule-btn-primary {
    background: var(--gold);
    color: #fff;
}
.schedule-btn-primary:hover { background: var(--gold-light); }
.schedule-btn-ghost {
    background: transparent;
    border: 1px solid var(--border-strong);
    color: var(--text-body);
}
.schedule-btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.patient-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}
.patient-row:last-child { border-bottom: none; }
.patient-row:hover { background: rgba(184,147,90,0.04); }
.patient-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--border-strong);
}
.patient-avatar img { width: 100%; height: 100%; object-fit: cover; }
.patient-info { flex: 1; min-width: 0; }
.patient-info strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--white);
}
.patient-info span {
    font-size: 0.78rem;
    color: var(--text-muted);
}
.patient-next {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: var(--gold);
    flex-shrink: 0;
}

.week-stat-box {
    background: var(--navy-mid);
    border: 1px solid var(--border);
    padding: 16px;
    text-align: center;
    transition: border-color var(--transition);
}
.week-stat-box:hover { border-color: rgba(184,147,90,0.3); }
.week-stat-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--gold);
    line-height: 1.1;
}
.week-stat-label {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

.dash-notes-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 24px;
}

/* ---- Clinical notes ---- */
.notes-area {
    width: 100%;
    min-height: 140px;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--white);
    background: var(--navy-mid);
    border: 1px solid var(--border-strong);
    outline: none;
    resize: vertical;
    transition: border-color var(--transition);
}
.notes-area:focus { border-color: var(--gold); }
.notes-area::placeholder { color: var(--text-muted); }
.notes-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    background: var(--navy-mid);
    display: flex;
    justify-content: flex-end;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .about { grid-template-columns: 1fr; }
    .about-image-col { min-height: 400px; }
    .contact { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .appt-section { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .dash-grid { grid-template-columns: 1fr; }
    .dash-notes-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    .dash-sidebar {
        transform: translateX(-100%);
        box-shadow: var(--shadow-md);
    }
    .dash-sidebar.open { transform: translateX(0); }
    .dash-main { margin-left: 0; }
    .dash-topbar { padding: 14px 20px; }
    .dash-content { padding: 20px; }
    .dash-search { min-width: 0; flex: 1; }
}
@media (max-width: 768px) {
    .logo-img { height: 58px; }
    #header.scrolled .logo-img { height: 52px; }
    .logo-img--footer { height: 96px; }
    .preloader-logo-img { height: 88px; }
    #nav-menu, .nav-cta { display: none; }
    .mobile-menu-btn { display: block; }
    #nav-menu.open {
        display: flex; flex-direction: column;
        position: fixed; inset: 80px 0 0 0;
        background: var(--navy);
        align-items: center; justify-content: center;
        gap: 28px; z-index: 200;
        overflow-y: auto;
        padding: 24px 0;
    }
    #nav-menu.open .nav-menu-cta { display: block; margin-top: 4px; width: 80%; max-width: 280px; }
    #nav-menu.open .nav-menu-cta .btn { width: 100%; justify-content: center; }
    .hero { padding: 120px 6% 64px; }
    .hero h1 { font-size: 2.6rem; }
    .hero-desc { max-width: 100%; }
    .hero-stats { gap: 14px; padding-top: 24px; }
    .hero-stat { padding: 0 14px; }
    .hero-stat .stat-n { font-size: 1.5rem; }
    .hero-stat .stat-l { font-size: 0.6rem; }
    .hero-stat-divider { height: 32px; }
    .services-layout { grid-template-columns: 1fr; gap: 32px; }
    .service-card {
        grid-template-columns: 32px 1fr;
        grid-template-areas:
            "num  title"
            "desc desc"
            "link link";
        column-gap: 12px;
        row-gap: 8px;
        padding: 18px 4px;
    }
    .service-num { align-self: start; margin-top: 3px; }
    .service-card h3 { align-self: start; font-size: 1.25rem; }
    .service-link { justify-self: start; margin-top: 2px; }
    .process-steps { gap: 24px; }
    .process-arrow { display: none; }
    .team-panel--spotlight .team-panel-stats { flex-wrap: wrap; gap: 20px; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-info { padding: 48px 5%; }
    .contact-form-wrap { padding: 48px 5%; }
    .dash-search { display: none; }
    .stats-row { grid-template-columns: 1fr; }
    .schedule-item { flex-wrap: wrap; }
    .schedule-actions { width: 100%; justify-content: flex-end; }
}
@media (max-width: 480px) {
    .hero { padding: 100px 5% 60px; }
    .hero h1 { font-size: 2rem; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-wrap: wrap; row-gap: 16px; }
    .hero-stat-divider:last-of-type { display: none; }
    .services { padding: 64px 0; }
    .about-content { padding: 56px 6%; }
    .team { padding: 64px 0; }
    .team-panel--spotlight .team-panel-body { padding: 32px 20px; }
    .team-panel--spotlight .team-panel-body h3 { font-size: 1.5rem; }
    .videos-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .cta-banner { padding: 56px 6%; }
    .cta-btns { flex-direction: column; width: 100%; }
    .cta-btns .btn { width: 100%; justify-content: center; }
}
