/* =========================================================
   HAIR BY LISA - LUXURY SALON WORDPRESS THEME
   File: assets/css/main.css
========================================================= */

/* -------------------------
   RESET + BASE
------------------------- */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #050505;
    --black-soft: #0a0a0a;
    --dark: #101010;
    --dark-card: #151515;
    --dark-card-2: #1b1b1b;
    --border: rgba(212, 166, 72, 0.28);
    --border-soft: rgba(255, 255, 255, 0.08);
    --gold: #d4a648;
    --gold-light: #f1c76b;
    --gold-dark: #9b7228;
    --white: #ffffff;
    --text: #d7d7d7;
    --muted: #9a9a9a;
    --shadow: 0 25px 80px rgba(0, 0, 0, 0.55);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    background: var(--black);
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 10%, rgba(212, 166, 72, 0.07), transparent 28%),
        radial-gradient(circle at 80% 20%, rgba(212, 166, 72, 0.05), transparent 26%),
        linear-gradient(180deg, rgba(255,255,255,0.015), transparent);
    z-index: -1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
}

.section-padding {
    padding: 90px 0;
}

h1,
h2,
h3,
h4 {
    color: var(--white);
    font-weight: 500;
    line-height: 1.08;
}

h1,
h2 {
    font-family: Georgia, "Times New Roman", serif;
}

h1 {
    font-size: clamp(48px, 6vw, 92px);
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(34px, 4vw, 58px);
    letter-spacing: -0.035em;
}

h3 {
    font-size: 20px;
}

em {
    color: var(--gold);
    font-style: italic;
}

.section-kicker {
    display: inline-block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.gold-line {
    width: 78px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 24px 0;
}

.center-heading {
    text-align: center;
    margin-bottom: 36px;
}

.center-heading .section-kicker {
    margin-bottom: 8px;
}

/* -------------------------
   BUTTONS
------------------------- */

.btn,
.header-book-btn,
input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 30px;
    border-radius: 2px;
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
    font-weight: 800;
    transition: var(--transition);
}

.btn-gold,
.header-book-btn {
    color: #111;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    box-shadow: 0 10px 28px rgba(212, 166, 72, 0.18);
}

.btn-gold:hover,
.header-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(212, 166, 72, 0.28);
}

.btn-outline {
    color: var(--gold-light);
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.02);
}

.btn-outline:hover {
    background: rgba(212, 166, 72, 0.12);
    border-color: var(--gold);
}

.video-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.09em;
    font-weight: 800;
    transition: var(--transition);
}

.play-icon {
    width: 52px;
    height: 52px;
    border: 1px solid var(--gold);
    color: var(--gold-light);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.video-link:hover {
    color: var(--gold-light);
}

/* -------------------------
   HEADER
------------------------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(5, 5, 5, 0.86);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
    height: 104px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-logo img {
    width: 205px;
    max-height: 78px;
    object-fit: contain;
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-menu a {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 104px;
    color: var(--white);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.12em;
    font-weight: 800;
    opacity: 0.88;
    transition: var(--transition);
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 27px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transform: translateX(-50%);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a {
    color: var(--gold-light);
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item > a::after {
    width: 34px;
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    background: transparent;
    border-radius: 3px;
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--gold);
}

/* -------------------------
   HERO SHARED
------------------------- */

.home-hero,
.page-hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
}

.home-hero-bg,
.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.home-hero-bg img,
.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
}

.home-hero-overlay,
.page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.72) 38%, rgba(0,0,0,0.48) 68%, rgba(0,0,0,0.75) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.9));
}

.home-hero-inner,
.page-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    align-items: center;
    gap: 70px;
    padding: 90px 0;
}

.home-hero-content,
.page-hero-content {
    max-width: 660px;
}

.home-hero-content p,
.page-hero-text,
.page-hero-subtitle {
    color: var(--white);
    font-size: 22px;
    line-height: 1.55;
}

.page-hero-text {
    color: var(--text);
    font-size: 16px;
    max-width: 590px;
    margin-top: 16px;
}

.page-hero-subtitle {
    margin-bottom: 12px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
    margin-top: 34px;
}

.home-hero-logo,
.page-hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-hero-logo img,
.page-hero-logo img {
    width: min(480px, 100%);
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55));
}

.scroll-down {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 4;
    color: var(--white);
    font-size: 32px;
    transform: translateX(-50%);
    opacity: 0.8;
}

/* -------------------------
   SECTION HEADINGS
------------------------- */

.section-heading-row {
    display: grid;
    grid-template-columns: 0.95fr 1fr;
    align-items: end;
    gap: 70px;
    margin-bottom: 42px;
}

.section-heading-row p {
    max-width: 620px;
    color: var(--text);
}

.gallery-heading {
    align-items: center;
}

/* -------------------------
   CARDS SHARED
------------------------- */

.service-card,
.value-card,
.reason-card,
.addon-card,
.contact-info-card,
.sidebar-card,
.policy-card {
    background:
        linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015)),
        var(--dark-card);
    border: 1px solid var(--border-soft);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    transition: var(--transition);
}

.service-card:hover,
.value-card:hover,
.reason-card:hover,
.addon-card:hover,
.contact-info-card:hover,
.policy-card:hover {
    transform: translateY(-5px);
    border-color: var(--border);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.42);
}

/* -------------------------
   HOME SERVICES
------------------------- */

.home-services,
.services-main,
.gallery-page,
.contact-main-section,
.booking-main-section {
    background: linear-gradient(180deg, #101010, #080808);
}

.service-card-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.service-card {
    min-height: 250px;
    padding: 38px 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-icon,
.value-icon,
.reason-icon,
.addon-icon,
.contact-info-icon,
.stat-icon {
    color: var(--gold);
    font-size: 46px;
    line-height: 1;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.service-card p {
    color: var(--muted);
    font-size: 14px;
}

.service-card span,
.service-card a,
.service-detail-card strong {
    color: var(--gold);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.12em;
    font-weight: 800;
    margin-top: 22px;
}

/* -------------------------
   HOME GALLERY
------------------------- */

.home-gallery {
    background: #080808;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 9px;
}

.gallery-preview-item {
    min-height: 290px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    background: var(--dark);
}

.gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.gallery-preview-item:hover img {
    transform: scale(1.08);
}

/* -------------------------
   CTA BOX
------------------------- */

.home-cta,
.services-cta,
.gallery-cta,
.contact-cta,
.booking-cta {
    background: #080808;
    padding: 40px 0 80px;
}

.cta-box {
    min-height: 245px;
    display: grid;
    grid-template-columns: 1fr 0.9fr 1.25fr;
    align-items: center;
    gap: 30px;
    border: 1px solid var(--border);
    background:
        linear-gradient(90deg, rgba(0,0,0,0.72), rgba(0,0,0,0.72)),
        linear-gradient(135deg, rgba(212,166,72,0.08), transparent);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cta-content,
.cta-middle {
    padding: 45px 0 45px 60px;
}

.cta-content h2 {
    text-transform: uppercase;
    font-size: clamp(34px, 3.7vw, 54px);
}

.cta-middle p {
    color: var(--text);
    max-width: 360px;
    margin-bottom: 22px;
}

.cta-image {
    height: 100%;
    min-height: 245px;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.86;
}

/* -------------------------
   FOOTER
------------------------- */

.site-footer {
    position: relative;
    background:
        linear-gradient(rgba(0,0,0,0.92), rgba(0,0,0,0.95)),
        radial-gradient(circle at 50% 0%, rgba(212,166,72,0.06), transparent 35%);
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.8fr 0.95fr 0.95fr 1.15fr;
    gap: 50px;
}

.footer-logo img {
    width: 190px;
    margin-bottom: 22px;
}

.footer-brand p {
    max-width: 300px;
    color: var(--text);
    font-size: 14px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 24px;
}

.footer-socials a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 50%;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: var(--transition);
}

.footer-socials a:hover {
    color: #111;
    background: var(--gold);
    border-color: var(--gold);
}

.footer-column h4 {
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-size: 14px;
    margin-bottom: 24px;
}

.footer-column li,
.footer-hours p {
    color: var(--text);
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-column a:hover {
    color: var(--gold-light);
}

.footer-hours strong {
    color: var(--gold);
}

.footer-contact li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.footer-contact span {
    color: var(--gold);
}

.footer-bottom {
    margin-top: 60px;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    color: var(--muted);
    font-size: 13px;
}

.scroll-top-btn {
    position: absolute;
    right: 38px;
    bottom: 26px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
    color: var(--gold-light);
}

/* -------------------------
   ABOUT PAGE
------------------------- */

.about-story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 65px;
    align-items: center;
}

.about-story-image img,
.why-choose-image img {
    width: 100%;
    min-height: 340px;
    object-fit: cover;
    border: 1px solid var(--border-soft);
}

.about-story-content p {
    color: var(--text);
    margin-bottom: 18px;
}

.about-values {
    padding: 0 0 80px;
    background: #101010;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.value-card {
    text-align: center;
    padding: 34px 28px;
}

.value-card p,
.reason-card p,
.addon-card p {
    color: var(--muted);
    font-size: 14px;
    margin-top: 10px;
}

.about-stats,
.gallery-stats {
    padding: 42px 0;
    background:
        linear-gradient(rgba(0,0,0,0.92), rgba(0,0,0,0.92)),
        radial-gradient(circle at 50% 50%, rgba(212,166,72,0.07), transparent 50%);
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 90px;
    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: 0;
}

.stat-icon {
    margin: 0;
    font-size: 38px;
}

.stat-item strong {
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 42px;
    font-weight: 400;
}

.stat-item span {
    color: var(--text);
    font-size: 14px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.1fr 0.85fr;
    gap: 46px;
    align-items: center;
}

.why-choose-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px 36px;
}

.why-item {
    display: flex;
    gap: 16px;
}

.why-item > span {
    width: 28px;
    height: 28px;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-item h3 {
    margin-bottom: 8px;
}

.why-item p {
    color: var(--muted);
    font-size: 14px;
}

.about-team-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.4fr;
    gap: 60px;
    align-items: center;
}

.team-intro p {
    color: var(--text);
    margin: 20px 0 28px;
}

.team-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.team-card {
    background: var(--dark-card);
    border: 1px solid var(--border-soft);
    text-align: center;
}

.team-card img {
    width: 100%;
    height: 245px;
    object-fit: cover;
}

.team-card div {
    padding: 18px 12px;
}

.team-card p {
    color: var(--muted);
    font-size: 13px;
}

/* -------------------------
   SERVICES PAGE
------------------------- */

.services-page-grid .service-card {
    min-height: 295px;
}

.service-detail-card p {
    min-height: 70px;
}

.service-detail-card strong {
    display: block;
    margin-top: 12px;
}

.featured-packages {
    background: #080808;
    padding: 20px 0 70px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.package-card {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    min-height: 285px;
    border: 1px solid var(--border);
    background: var(--dark-card);
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-content {
    padding: 30px 24px;
}

.package-content h3 {
    font-family: Georgia, serif;
    font-size: 25px;
    margin-bottom: 16px;
}

.package-content li {
    position: relative;
    color: var(--text);
    font-size: 14px;
    margin-bottom: 6px;
    padding-left: 14px;
}

.package-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gold);
}

.package-meta {
    display: grid;
    gap: 6px;
    margin: 20px 0;
    color: var(--gold-light);
    font-size: 13px;
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.addon-card {
    text-align: center;
    padding: 34px 18px;
}

.addon-card strong {
    display: block;
    color: var(--gold);
    margin-top: 16px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
}

.services-experience {
    padding: 10px 0 70px;
    background: #080808;
}

.experience-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    border: 1px solid var(--border);
    padding: 5px;
}

.experience-strip img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.wide-cta-box {
    position: relative;
    min-height: 205px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr 0.7fr 1fr;
    align-items: center;
    gap: 30px;
    border: 1px solid var(--border);
    overflow: hidden;
    background: rgba(255,255,255,0.02);
}

.wide-cta-content {
    padding-left: 55px;
}

.wide-cta-content p {
    margin-top: 12px;
    color: var(--text);
}

.wide-cta-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.wide-cta-points div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wide-cta-points span {
    color: var(--gold);
    font-size: 30px;
}

.wide-cta-points p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}

.wide-cta-image {
    height: 100%;
}

.wide-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* -------------------------
   GALLERY PAGE
------------------------- */

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 36px;
}

.gallery-filter {
    min-width: 100px;
    height: 42px;
    border-radius: 100px;
    border: 1px solid var(--border-soft);
    color: var(--white);
    background: rgba(255,255,255,0.02);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 12px;
    font-weight: 800;
    transition: var(--transition);
}

.gallery-filter.active,
.gallery-filter:hover {
    color: #111;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-color: var(--gold);
}

.gallery-masonry-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 210px;
    gap: 6px;
}

.gallery-item {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    background: var(--dark);
}

.gallery-item.gallery-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease, opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.07);
    opacity: 0.9;
}

.gallery-feature-cards {
    background: #080808;
    padding: 0 0 36px;
}

.feature-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.feature-gallery-card {
    position: relative;
    min-height: 220px;
    border: 1px solid var(--border);
    overflow: hidden;
    background: var(--dark-card);
}

.feature-gallery-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.feature-card-content {
    position: relative;
    z-index: 2;
    max-width: 280px;
    padding: 32px;
}

.feature-card-content h2 {
    font-size: 30px;
}

.feature-card-content p {
    margin: 12px 0 22px;
    color: var(--text);
}

.social-strip-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr) 1.45fr;
    gap: 8px;
}

.social-video-card {
    position: relative;
    height: 150px;
    border: 1px solid var(--border-soft);
    overflow: hidden;
}

.social-video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-video-card span {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 34px;
    height: 34px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold-light);
    background: rgba(0,0,0,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-follow-card {
    border: 1px solid var(--border-soft);
    padding: 28px;
    background: var(--dark-card);
}

.social-icon {
    color: var(--gold);
    font-size: 34px;
}

.social-follow-card h3 {
    margin: 12px 0;
}

.social-follow-card p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 22px;
}

/* -------------------------
   CONTACT PAGE
------------------------- */

.contact-info-section {
    margin-top: -40px;
    position: relative;
    z-index: 5;
    padding-bottom: 24px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 22px;
    min-height: 140px;
    padding: 30px;
}

.contact-info-icon {
    margin: 0;
}

.contact-info-card p,
.contact-info-card a {
    color: var(--text);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.contact-form-card,
.salon-info-card {
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.025);
    padding: 40px;
}

.contact-form-card h2,
.salon-info-card h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.contact-form-card > p,
.salon-info-card > p {
    color: var(--text);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    display: none;
}

input,
textarea,
select {
    width: 100%;
    min-height: 58px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.07);
    color: var(--white);
    padding: 0 20px;
    outline: none;
    transition: var(--transition);
}

textarea {
    min-height: 150px;
    padding-top: 18px;
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: #8e8e8e;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--gold);
    background: rgba(212,166,72,0.04);
}

select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
    background-position: calc(100% - 20px) 25px, calc(100% - 14px) 25px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.map-box {
    position: relative;
    height: 210px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
}

.map-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) brightness(0.7);
}

.map-pin {
    position: absolute;
    left: 58%;
    top: 38%;
    color: var(--gold);
    font-size: 46px;
    transform: translate(-50%, -50%);
}

.salon-info-divider {
    height: 1px;
    background: var(--border);
    margin: 28px 0;
}

.salon-info-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.salon-info-two-col h3,
.connect-social h3 {
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 23px;
    margin-bottom: 14px;
}

.salon-hours li {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--text);
    font-size: 14px;
    margin-bottom: 8px;
}

.salon-info-two-col p,
.connect-social p {
    color: var(--muted);
    font-size: 14px;
}

.connect-social {
    margin-top: 30px;
}

.contact-reasons {
    padding: 20px 0 50px;
    background: #080808;
}

.reason-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.reason-card {
    text-align: center;
    padding: 34px 24px;
}

/* -------------------------
   BOOKING PAGE
------------------------- */

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 370px;
    gap: 24px;
}

.booking-panel {
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.018);
    padding: 0 28px 28px;
}

.booking-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin: 0 -28px 26px;
    padding: 22px 22px 16px;
}

.booking-step {
    position: relative;
    text-align: center;
}

.booking-step::after {
    content: "";
    position: absolute;
    top: 13px;
    left: 50%;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.18);
    z-index: 0;
}

.booking-step:last-child::after {
    display: none;
}

.booking-step span {
    position: relative;
    z-index: 1;
    width: 28px;
    height: 28px;
    margin: 0 auto 8px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.35);
    background: var(--dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.booking-step.active span {
    background: var(--gold);
    color: #111;
    border-color: var(--gold);
}

.booking-step small {
    display: block;
    color: var(--muted);
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.08em;
}

.booking-step.active small {
    color: var(--gold);
}

.booking-section {
    margin-bottom: 26px;
}

.booking-section h2,
.booking-summary-box h2 {
    font-family: Georgia, serif;
    font-size: 24px;
    margin-bottom: 16px;
}

.booking-section-title-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
}

.booking-section-title-row a {
    color: var(--gold);
    font-size: 13px;
}

.booking-category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.booking-category-card,
.booking-service-card,
.stylist-card,
.time-slot-grid button,
.calendar-days button {
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.035);
    color: var(--white);
    transition: var(--transition);
}

.booking-category-card {
    min-height: 95px;
    padding: 16px 10px;
    display: grid;
    place-items: center;
    gap: 8px;
}

.booking-category-card span {
    color: var(--gold);
    font-size: 34px;
}

.booking-category-card strong {
    font-size: 13px;
}

.booking-category-card.active,
.booking-category-card:hover,
.booking-service-card.active,
.booking-service-card:hover,
.stylist-card.active,
.stylist-card:hover {
    border-color: var(--gold);
    background: rgba(212,166,72,0.08);
}

.booking-service-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.booking-service-card {
    text-align: left;
    overflow: hidden;
}

.booking-service-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.booking-service-card span,
.booking-service-card small,
.booking-service-card strong {
    display: block;
    padding: 0 12px;
}

.booking-service-card span {
    margin-top: 12px;
    font-family: Georgia, serif;
    font-size: 17px;
}

.booking-service-card small {
    color: var(--muted);
    margin: 5px 0;
}

.booking-service-card strong {
    color: var(--gold);
    font-size: 13px;
    padding-bottom: 13px;
}

.stylist-select-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.stylist-card {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    padding: 10px;
}

.stylist-card img {
    width: 76px;
    height: 76px;
    object-fit: cover;
}

.stylist-card strong,
.stylist-card span,
.stylist-card small {
    display: block;
}

.stylist-card span {
    color: var(--muted);
    font-size: 12px;
}

.stylist-card small {
    color: var(--gold);
    margin-top: 4px;
}

.booking-date-time-grid {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 24px;
}

.calendar-card {
    border: 1px solid rgba(255,255,255,0.09);
    padding: 18px;
    background: rgba(255,255,255,0.025);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.calendar-header button {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: var(--white);
}

.calendar-weekdays,
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    text-align: center;
}

.calendar-weekdays span {
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
}

.calendar-days button {
    height: 30px;
    border: 0;
    background: transparent;
    color: var(--text);
    border-radius: 50%;
}

.calendar-days button.active,
.calendar-days button:hover {
    background: var(--gold);
    color: #111;
}

.time-slots-card h3 {
    margin-bottom: 14px;
}

.time-slot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.time-slot-grid button {
    height: 40px;
}

.time-slot-grid button.active,
.time-slot-grid button:hover {
    background: var(--gold);
    color: #111;
    border-color: var(--gold);
}

.time-slots-card p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 12px;
}

.booking-details-form input,
.booking-details-form textarea,
.booking-details-form select {
    min-height: 42px;
}

.booking-details-form textarea {
    min-height: 70px;
}

.booking-summary-box {
    border: 1px solid var(--border);
    background: rgba(212,166,72,0.035);
    padding: 18px;
}

.booking-summary-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 0.8fr 0.8fr;
    gap: 14px;
    align-items: center;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 10px;
    border-right: 1px solid rgba(212,166,72,0.25);
    min-height: 62px;
}

.summary-item span {
    color: var(--gold);
    font-size: 28px;
}

.summary-item img {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 50%;
}

.summary-item small,
.summary-total small {
    color: var(--gold);
    display: block;
    font-size: 11px;
}

.summary-item strong {
    color: var(--white);
    font-size: 13px;
}

.summary-item p {
    color: var(--muted);
    font-size: 12px;
}

.summary-total strong {
    color: var(--gold-light);
    font-family: Georgia, serif;
    font-size: 28px;
}

.deposit-note {
    color: var(--muted);
    font-size: 12px;
    margin-top: 12px;
}

.booking-submit-btn {
    width: 100%;
    margin-top: 12px;
}

.booking-sidebar {
    display: grid;
    gap: 18px;
    align-content: start;
}

.sidebar-card {
    padding: 30px;
    border-color: var(--border);
}

.sidebar-card h2 {
    font-size: 28px;
    margin-bottom: 22px;
}

.sidebar-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.sidebar-info-item span,
.benefit-item span {
    color: var(--gold);
    font-size: 30px;
}

.sidebar-info-item strong,
.benefit-item h3 {
    color: var(--gold);
}

.sidebar-info-item p,
.sidebar-info-item a,
.benefit-item p {
    color: var(--text);
    font-size: 14px;
}

.sidebar-divider {
    height: 1px;
    background: var(--border);
    margin: 24px 0;
}

.sidebar-hours li {
    display: flex;
    justify-content: space-between;
    color: var(--text);
    font-size: 14px;
    margin-bottom: 8px;
}

.walkin-note {
    color: var(--gold);
    margin-top: 18px;
    font-size: 14px;
}

.help-booking-card {
    position: relative;
    overflow: hidden;
    min-height: 210px;
}

.help-booking-card img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 55%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.help-booking-card > div {
    position: relative;
    z-index: 2;
    max-width: 210px;
}

.help-booking-card p {
    color: var(--text);
    margin: 12px 0 20px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.booking-policy-section {
    padding: 10px 0 40px;
    background: #080808;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
}

.policy-card {
    display: flex;
    gap: 16px;
    padding: 26px;
    border: 0;
    border-right: 1px solid var(--border);
}

.policy-card:last-child {
    border-right: 0;
}

.policy-card span {
    color: var(--gold);
    font-size: 35px;
}

.policy-card p {
    color: var(--muted);
    font-size: 13px;
}

/* -------------------------
   UTILITY STATES
------------------------- */

.gallery-item.is-hidden {
    display: none;
}

.no-scroll {
    overflow: hidden;
}


/* Booking message popup */

.booking-message-box {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 9999;
    max-width: 420px;
    padding: 18px 22px;
    border: 1px solid var(--border);
    background: rgba(10, 10, 10, 0.96);
    color: var(--white);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: all 0.3s ease;
}

.booking-message-box.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.booking-message-box.success {
    border-color: rgba(212, 166, 72, 0.65);
}

.booking-message-box.error {
    border-color: rgba(255, 80, 80, 0.65);
}


/* Gallery lightbox */

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px;
    background: rgba(0, 0, 0, 0.92);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
}

.gallery-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.gallery-lightbox img {
    max-width: min(100%, 1100px);
    max-height: 82vh;
    object-fit: contain;
    border: 1px solid var(--border);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.7);
}

.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;
    border: 1px solid var(--border);
    background: rgba(10, 10, 10, 0.86);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.gallery-lightbox-close:hover,
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    background: var(--gold);
    color: #111;
}

.gallery-lightbox-close {
    top: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    font-size: 34px;
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
    top: 50%;
    width: 56px;
    height: 56px;
    font-size: 42px;
    transform: translateY(-50%);
}

.gallery-lightbox-prev {
    left: 28px;
}

.gallery-lightbox-next {
    right: 28px;
}

@media (max-width: 768px) {
    .gallery-lightbox {
        padding: 58px 18px;
    }

    .gallery-lightbox-prev,
    .gallery-lightbox-next {
        width: 44px;
        height: 44px;
        font-size: 34px;
    }

    .gallery-lightbox-prev {
        left: 12px;
    }

    .gallery-lightbox-next {
        right: 12px;
    }

    .gallery-lightbox-close {
        top: 14px;
        right: 14px;
        width: 42px;
        height: 42px;
        font-size: 28px;
    }
}

/* Main JS helper styles */

.site-header.is-scrolled {
    background: rgba(5, 5, 5, 0.96);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.scroll-top-btn {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.scroll-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-message-box {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 99999;
    max-width: 420px;
    padding: 18px 22px;
    border: 1px solid var(--border);
    background: rgba(10, 10, 10, 0.96);
    color: var(--white);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: all 0.3s ease;
}

.site-message-box.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.site-message-box.success {
    border-color: rgba(212, 166, 72, 0.65);
}

.site-message-box.error {
    border-color: rgba(255, 80, 80, 0.65);
}

img {
    opacity: 1;
}

img:not(.is-loaded) {
    opacity: 0;
}

img.is-loaded {
    opacity: 1;
    transition: opacity 0.35s ease;
}

.form-group.is-focused input,
.form-group.is-focused textarea,
.form-group.is-focused select {
    border-color: var(--gold);
}

/* Default page styles */

.default-page-section {
    background: linear-gradient(180deg, #101010, #080808);
}

.default-page-content {
    max-width: 920px;
    margin: 0 auto;
    padding: 48px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.025);
}

.entry-content {
    color: var(--text);
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin: 28px 0 14px;
}

.entry-content p {
    margin-bottom: 18px;
}

.entry-content a {
    color: var(--gold-light);
    text-decoration: underline;
}

.entry-content ul,
.entry-content ol {
    margin: 0 0 22px 22px;
}

.entry-content ul {
    list-style: disc;
}

.entry-content ol {
    list-style: decimal;
}

.entry-content li {
    margin-bottom: 8px;
}

.entry-content blockquote {
    margin: 28px 0;
    padding: 22px 28px;
    border-left: 3px solid var(--gold);
    background: rgba(212, 166, 72, 0.06);
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 1.5;
}

.entry-content img {
    margin: 28px 0;
    border: 1px solid var(--border-soft);
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
}

.entry-content th,
.entry-content td {
    border: 1px solid var(--border-soft);
    padding: 14px;
    text-align: left;
}

.entry-content th {
    color: var(--gold);
    background: rgba(212, 166, 72, 0.06);
}

.page-links {
    margin-top: 30px;
    color: var(--gold);
}

@media (max-width: 768px) {
    .default-page-content {
        padding: 28px;
    }
}

@media (max-width: 520px) {
    .default-page-content {
        padding: 22px;
    }

    .entry-content blockquote {
        font-size: 18px;
        padding: 18px;
    }
}

/* Single post styles */

.single-post-section {
    background: linear-gradient(180deg, #101010, #080808);
}

.single-post-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.single-post-content {
    padding: 48px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.025);
}

.single-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 16px;
}

.single-post-tags {
    margin-top: 42px;
    padding-top: 28px;
    border-top: 1px solid var(--border-soft);
}

.single-post-tags h3 {
    margin-bottom: 14px;
}

.single-post-tags a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    margin: 0 8px 8px 0;
    border: 1px solid var(--border-soft);
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.025);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.single-post-tags a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #111;
}

.single-post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 38px;
    padding-top: 28px;
    border-top: 1px solid var(--border-soft);
}

.single-nav-item a {
    display: block;
    min-height: 110px;
    padding: 22px;
    border: 1px solid var(--border-soft);
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition);
}

.single-nav-item a:hover {
    border-color: var(--border);
    transform: translateY(-4px);
}

.single-nav-item span {
    display: block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 8px;
}

.single-nav-item strong {
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 500;
}

.next-post {
    text-align: right;
}

.single-post-sidebar {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 125px;
}

.single-author-card p,
.single-booking-card p,
.single-recent-posts-card p {
    color: var(--text);
    font-size: 14px;
    margin-bottom: 22px;
}

.single-categories-card ul {
    display: grid;
    gap: 10px;
}

.single-categories-card li {
    display: flex;
    justify-content: space-between;
    color: var(--text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 10px;
    font-size: 14px;
}

.single-categories-card a:hover {
    color: var(--gold-light);
}

.recent-post-list {
    display: grid;
    gap: 14px;
}

.recent-post-item {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 14px;
    align-items: center;
}

.recent-post-thumb {
    width: 76px;
    height: 76px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-item span {
    display: block;
    color: var(--gold);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
}

.recent-post-item strong {
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 500;
}

.recent-post-item:hover strong {
    color: var(--gold-light);
}

/* Comments basic styling */

.comments-area {
    margin-top: 42px;
    padding-top: 32px;
    border-top: 1px solid var(--border-soft);
}

.comments-title,
.comment-reply-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 22px;
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment {
    padding: 22px;
    margin-bottom: 18px;
    border: 1px solid var(--border-soft);
    background: rgba(255, 255, 255, 0.02);
}

.comment-author {
    color: var(--gold-light);
    font-weight: 700;
}

.comment-metadata,
.comment-metadata a {
    color: var(--muted);
    font-size: 12px;
}

.comment-content {
    margin-top: 12px;
    color: var(--text);
}

.comment-reply-link {
    display: inline-flex;
    margin-top: 12px;
    color: var(--gold);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.08em;
}

.comment-form-comment label,
.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
    display: block;
    color: var(--gold);
    margin-bottom: 8px;
}

.comment-form textarea,
.comment-form input {
    margin-bottom: 16px;
}

.comment-form .submit {
    display: inline-flex;
    width: auto;
    min-height: 52px;
    padding: 0 30px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .single-post-layout {
        grid-template-columns: 1fr;
    }

    .single-post-sidebar {
        position: static;
        grid-template-columns: repeat(2, 1fr);
    }

    .single-recent-posts-card {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .single-post-content {
        padding: 30px;
    }

    .single-post-navigation {
        grid-template-columns: 1fr;
    }

    .next-post {
        text-align: left;
    }

    .single-post-sidebar {
        grid-template-columns: 1fr;
    }

    .single-recent-posts-card {
        grid-column: auto;
    }
}

@media (max-width: 520px) {
    .single-post-content {
        padding: 22px;
    }

    .single-nav-item strong {
        font-size: 19px;
    }

    .recent-post-item {
        grid-template-columns: 66px 1fr;
    }

    .recent-post-thumb {
        width: 66px;
        height: 66px;
    }
}

/* Breadcrumb */

.breadcrumb {
    position: relative;
    z-index: 5;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 24px;
}

.breadcrumb a {
    color: var(--gold-light);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: var(--muted);
}

/* Testimonials section */

.testimonials-section {
    background: linear-gradient(180deg, #101010, #080808);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.testimonial-card {
    padding: 34px;
    border: 1px solid var(--border-soft);
    background: rgba(255, 255, 255, 0.025);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--border);
}

.testimonial-rating {
    color: var(--gold);
    letter-spacing: 0.12em;
    margin-bottom: 18px;
}

.testimonial-card p {
    color: var(--text);
    margin-bottom: 22px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    line-height: 1.5;
}

.testimonial-card h3 {
    color: var(--gold-light);
    font-size: 16px;
}

@media (max-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}