/* ================= DESIGN TOKENS — Regain Hair Fixing Studio ================= */
:root {
    --gold: #c9a227;
    --gold-bright: #e8c547;
    --gold-deep: #9a7b1a;
    --gold-soft: rgba(201, 162, 39, 0.14);
    --gold-glow: rgba(201, 162, 39, 0.28);
    --gold-line: linear-gradient(90deg, transparent, var(--gold-bright), var(--gold), transparent);
    --black: #050505;
    --ink: #0a0a0a;
    --charcoal: #121212;
    --surface: #161616;
    --surface-raised: #1c1c1c;
    --surface-alt: #1a1814;
    --border: rgba(201, 162, 39, 0.22);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --text: rgba(255, 255, 255, 0.88);
    --text-muted: rgba(255, 255, 255, 0.58);
    --white: #ffffff;
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.45);
    --shadow-gold: 0 8px 28px rgba(201, 162, 39, 0.28);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --space-section: clamp(4.5rem, 9vw, 7rem);
    --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --font-sans: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================= GLOBAL ================= */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--ink);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--white);
    letter-spacing: 0.01em;
    font-weight: 600;
}

a {
    color: var(--gold-bright);
    transition: color var(--transition);
}

a:focus-visible,
button:focus-visible,
.form-control:focus-visible,
.navbar-toggler:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.85rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.85rem);
    font-weight: 600;
    margin-bottom: 0.85rem;
    line-height: 1.15;
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
    font-weight: 300;
}

.divider {
    width: 64px;
    height: 1px;
    background: var(--gold-line);
    margin: 1.25rem auto 0;
}

.section {
    padding: var(--space-section) 0;
    background: var(--ink);
}

.section--alt {
    background:
        radial-gradient(ellipse 70% 60% at 100% 0%, rgba(201, 162, 39, 0.06), transparent 55%),
        var(--charcoal);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.lead-text {
    font-size: 1.08rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.lead-text strong {
    color: var(--gold-bright);
    font-weight: 600;
}

/* ================= MOTION ================= */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes hero-rise {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.45; }
    50% { opacity: 0.75; }
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(8px); opacity: 1; }
}

/* ================= TOP BAR ================= */
.top-bar {
    background: var(--black);
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 0.55rem 0;
}

.top-bar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1.5rem;
}

.top-bar__item {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.top-bar__item:hover {
    color: var(--gold-bright);
}

.top-bar__item i {
    margin-right: 0.4rem;
    color: var(--gold);
    font-size: 0.9rem;
}

.top-bar__item--muted {
    margin-left: auto;
}

@media (max-width: 767.98px) {
    .top-bar__item--muted {
        display: none;
    }
}

/* ================= NAVBAR ================= */
.custom-navbar {
    background: rgba(8, 8, 8, 0.92) !important;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0.55rem 0;
    z-index: 1030;
    transition: box-shadow var(--transition), background var(--transition);
}

.custom-navbar.navbar-scrolled {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    background: rgba(5, 5, 5, 0.96) !important;
}

.navbar-brand {
    padding: 0;
}

.site-logo {
    max-height: 100px;
    max-width: 280px;
    width: auto;
    height: auto;
    display: block;
}

.site-logo--footer {
    max-height: 64px;
    max-width: 220px;
}

@media (min-width: 992px) {
    .site-logo {
        max-height: 100px;
        max-width: 360px;
    }
}

.navbar-toggler {
    border: 1px solid var(--border);
    padding: 0.45rem 0.6rem;
    border-radius: var(--radius-sm);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201, 162, 39, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    color: rgba(255, 255, 255, 0.78) !important;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.55rem 0.85rem !important;
    position: relative;
    transition: color var(--transition);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.2rem;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active,
.nav-link.show {
    color: var(--gold-bright) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.dropdown-toggle::after {
    margin-left: 0.35rem;
    vertical-align: 0.15em;
    border-top-color: currentColor;
}

/* Nested stepwise dropdowns */
.navbar .dropdown-menu {
    background: var(--surface-raised);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.4rem 0;
    margin-top: 0 !important;
    box-shadow: var(--shadow-md);
    min-width: 15rem;
}

.navbar .nav-item.dropdown > .dropdown-menu {
    padding-top: 0.55rem;
}

.navbar .dropdown-item {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 0.55rem 1.1rem;
    white-space: normal;
    background-color: transparent;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus,
.navbar .dropdown-item:focus-visible,
.navbar .dropdown-item:active,
.navbar .dropdown-item.active,
.navbar .dropdown-item.active:hover,
.navbar .dropdown-item.active:focus,
.navbar .show > .dropdown-item {
    background-color: var(--gold-soft) !important;
    color: var(--gold-bright) !important;
}

.navbar .dropdown-item.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.navbar .dropend .dropdown-toggle::after {
    content: "";
    border-top: 0.35em solid transparent;
    border-bottom: 0.35em solid transparent;
    border-left: 0.35em solid currentColor;
    border-right: 0;
    margin-left: auto;
    vertical-align: 0;
    float: none;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    /* Bridge gap so hover does not drop between toggle and menu */
    .navbar .nav-item.dropdown {
        position: relative;
    }

    .navbar .nav-item.dropdown::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 0.75rem;
    }

    .navbar .nav-item.dropdown:hover > .dropdown-menu,
    .navbar .nav-item.dropdown:focus-within > .dropdown-menu {
        display: block !important;
    }

    .navbar .dropend {
        position: relative;
    }

    .navbar .dropend > .dropdown-menu {
        top: 0;
        left: 100%;
        right: auto;
        margin-top: 0 !important;
        margin-left: 0;
    }

    .navbar .dropend:hover > .dropdown-menu,
    .navbar .dropend:focus-within > .dropdown-menu,
    .navbar .dropend.show > .dropdown-menu {
        display: block !important;
    }
}

.btn-cta {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    color: var(--black) !important;
    border-radius: 2px;
    padding: 0.55rem 1.25rem;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    box-shadow: var(--shadow-gold);
}

.btn-cta:hover {
    color: var(--black) !important;
    filter: brightness(1.08);
    transform: translateY(-1px);
}

/* ================= HERO ================= */
.hero {
    position: relative;
    min-height: min(100vh, 880px);
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: clamp(5rem, 12vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.72) 0%, rgba(5, 5, 5, 0.55) 40%, rgba(5, 5, 5, 0.88) 100%),
        radial-gradient(ellipse 90% 70% at 50% 20%, rgba(201, 162, 39, 0.18), transparent 58%),
        url("../images/header-bg.jpg") center/cover no-repeat;
}

.hero__bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 55% at 50% 45%, transparent 30%, rgba(5, 5, 5, 0.45) 100%);
    pointer-events: none;
}

.hero__glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 50% 75%, var(--gold-glow), transparent 70%);
    animation: glow-pulse 6s ease-in-out infinite;
    pointer-events: none;
}

.hero__container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero__content {
    max-width: 42rem;
    margin: 0 auto;
}

.hero__content.reveal,
.hero__content {
    animation: hero-rise 1s ease 0.15s both;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(3.25rem, 8vw, 5.5rem);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin: 0 0 0.35rem;
    line-height: 1;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.45);
}

.hero__subtitle {
    font-family: var(--font-sans);
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 1.5rem;
}

.hero__tagline {
    font-family: var(--font-sans);
    font-size: clamp(0.8rem, 1.4vw, 0.95rem);
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 1.25rem;
}

.hero__text {
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 300;
    line-height: 1.75;
    max-width: 34rem;
    margin: 0 auto 2rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
}

.hero__scroll {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 28px;
    height: 44px;
    border: 1px solid rgba(201, 162, 39, 0.45);
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
    text-decoration: none;
}

.hero__scroll span {
    width: 4px;
    height: 8px;
    border-radius: 2px;
    background: var(--gold);
    animation: scroll-bounce 1.6s ease-in-out infinite;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 45%, var(--gold-deep) 100%);
    color: var(--black) !important;
    border: none;
    padding: 0.85rem 1.75rem;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    color: var(--black) !important;
    filter: brightness(1.06);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(201, 162, 39, 0.35);
}

.btn-gold-outline {
    background: transparent;
    color: var(--gold-bright) !important;
    border: 1px solid var(--gold);
    padding: 0.75rem 1.5rem;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background var(--transition), color var(--transition);
}

.btn-gold-outline:hover {
    background: var(--gold-soft);
    color: var(--white) !important;
}

.btn-ghost {
    background: transparent;
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 0.85rem 1.75rem;
    border-radius: 2px;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: border-color var(--transition), background var(--transition);
}

.btn-ghost:hover {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.08);
    color: var(--gold-bright) !important;
}

/* ================= ABOUT ================= */
.about-points {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.about-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text);
    font-weight: 400;
}

.about-points i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 0.15rem;
}

/* ================= INNER PAGE CONTENT ================= */
.content-prose {
    max-width: 52rem;
}

.content-prose p {
    color: var(--text-muted);
    margin-bottom: 1.15rem;
    line-height: 1.75;
}

.content-prose .lead-text {
    color: var(--text);
}

.content-prose h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.55rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--white);
    margin: 2.25rem 0 1rem;
}

.content-prose h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--gold-bright);
    margin: 1.75rem 0 0.75rem;
}

.content-prose .about-points {
    margin-top: 0.75rem;
}

.content-card {
    display: block;
    height: 100%;
    padding: 1.5rem 1.35rem;
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    border-top: 2px solid var(--gold);
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.content-card:hover {
    transform: translateY(-4px);
    border-color: var(--border);
    box-shadow: var(--shadow-md);
    color: inherit;
}

.content-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.65rem;
    color: var(--white);
}

.content-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.content-card--static {
    cursor: default;
}

.content-card--static:hover {
    transform: none;
    box-shadow: none;
}

.feature-grid {
    margin-top: 1.5rem;
}

.content-prose a,
.lead-text a,
.section p a {
    color: var(--gold-bright);
    text-decoration: underline;
    text-underline-offset: 0.18em;
    text-decoration-thickness: 1px;
}

.content-prose a:hover,
.lead-text a:hover,
.section p a:hover {
    color: var(--gold);
}

/* ================= BREADCRUMBS ================= */
.breadcrumb-nav {
    background: var(--charcoal);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.75rem 0;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
}

.breadcrumb-list__item {
    display: inline-flex;
    align-items: center;
    color: var(--text-muted);
}

.breadcrumb-list__item:not(:last-child)::after {
    content: "/";
    margin-left: 0.5rem;
    color: rgba(255, 255, 255, 0.28);
}

.breadcrumb-list__item a {
    color: var(--text-muted);
    text-decoration: none;
}

.breadcrumb-list__item a:hover {
    color: var(--gold-bright);
}

.breadcrumb-list__item [aria-current="page"] {
    color: var(--gold);
}

.related-section .section-title {
    margin-bottom: 0.25rem;
}

.about-panel {
    position: relative;
    padding: 1rem;
}

.about-panel__frame {
    position: relative;
    border: 1px solid var(--border);
    background:
        linear-gradient(145deg, rgba(201, 162, 39, 0.12), transparent 40%),
        var(--surface);
    min-height: 360px;
    display: flex;
    align-items: center;
}

.about-panel__frame::before,
.about-panel__frame::after {
    content: "";
    position: absolute;
    width: 48px;
    height: 48px;
    border: 1px solid var(--gold);
    pointer-events: none;
}

.about-panel__frame::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.about-panel__frame::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

.about-panel__inner {
    padding: clamp(2rem, 5vw, 3rem);
    width: 100%;
}

.about-panel__eyebrow {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.about-panel__quote {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    line-height: 1.25;
    color: var(--white);
    margin: 0 0 2rem;
    font-weight: 500;
}

.about-panel__meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    border-top: 1px solid var(--border-subtle);
    padding-top: 1.25rem;
}

.about-panel__meta strong {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.about-panel__meta span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ================= SERVICE TILES ================= */
.service-tile {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.75rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    border-top: 2px solid var(--gold);
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-tile:hover {
    transform: translateY(-6px);
    border-color: var(--border);
    box-shadow: var(--shadow-md);
    color: inherit;
}

.service-tile__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.15rem;
    color: var(--gold);
    font-size: 1.5rem;
    border: 1px solid var(--border);
    background: var(--gold-soft);
}

.service-tile h3 {
    font-size: 1.45rem;
    margin-bottom: 0.65rem;
    color: var(--white);
}

.service-tile p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 0;
    flex-grow: 1;
}

.service-tile--link {
    display: flex;
}

.service-chip {
    display: inline-block;
    padding: 0.45rem 0.85rem;
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    font-size: 0.85rem;
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.service-chip:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-soft);
}

/* ================= PAGE HERO ================= */
.page-hero {
    position: relative;
    padding: clamp(4.5rem, 10vw, 6.5rem) 0 clamp(3rem, 6vw, 4rem);
    overflow: hidden;
    background: #1a1510;
    color: #fff;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.72) 45%, rgba(10, 10, 10, 0.55) 100%),
        url("../images/inner-bg.jpg") center / cover no-repeat;
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.page-hero .section-label {
    color: var(--gold);
}

.page-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    margin: 0.35rem 0 0.75rem;
    color: #fff;
}

.page-hero__text {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    max-width: 34rem;
}

/* ================= REVIEWS ================= */
.reviews-marquee {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.reviews-marquee__track {
    display: flex;
    width: max-content;
    gap: 1.25rem;
    padding: 0.25rem 1rem 0.5rem;
    animation: reviews-scroll 45s linear infinite;
}

.reviews-marquee:hover .reviews-marquee__track {
    animation-play-state: paused;
}

@keyframes reviews-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.review-card {
    flex: 0 0 min(340px, 78vw);
    width: min(340px, 78vw);
    margin: 0;
    padding: 1.75rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    border-top: 2px solid var(--gold);
    display: flex;
    flex-direction: column;
    min-height: 240px;
}

.review-card__stars {
    display: flex;
    gap: 0.2rem;
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.review-card p {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    line-height: 1.55;
    color: var(--text);
    font-style: italic;
    margin: 0 0 1.35rem;
    flex-grow: 1;
}

.review-card footer {
    border-top: 1px solid var(--border-subtle);
    padding-top: 1rem;
}

.review-card footer strong {
    display: block;
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
}

.review-card footer span {
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
}

@media (prefers-reduced-motion: reduce) {
    .reviews-marquee__track {
        animation: none;
        flex-wrap: wrap;
        width: 100%;
        max-width: 1100px;
        margin: 0 auto;
        justify-content: center;
    }

    .reviews-marquee__track .review-card[aria-hidden="true"] {
        display: none;
    }
}

/* ================= DETAIL BLOCKS ================= */
.detail-block {
    height: 100%;
    padding: 1.75rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    border-left: 2px solid var(--gold);
    transition: border-color var(--transition), background var(--transition);
}

.detail-block:hover {
    background: var(--surface-raised);
    border-color: var(--border);
}

.detail-block--center {
    text-align: center;
    border-left: 1px solid var(--border-subtle);
    border-top: 2px solid var(--gold);
}

.detail-block__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 1.4rem;
    border: 1px solid var(--border);
}

.detail-block h3 {
    font-size: 1.35rem;
    margin-bottom: 0.65rem;
}

.detail-block p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ================= FEATURE PANEL ================= */
.feature-panel {
    background:
        linear-gradient(160deg, rgba(201, 162, 39, 0.1), transparent 50%),
        var(--surface-raised);
    border: 1px solid var(--border);
    padding: clamp(2rem, 4vw, 2.75rem);
}

.feature-panel__label {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.feature-panel__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-panel__list li {
    position: relative;
    padding: 0.85rem 0 0.85rem 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 1.05rem;
    color: var(--text);
    font-family: var(--font-serif);
}

.feature-panel__list li:last-child {
    border-bottom: none;
}

.feature-panel__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.2rem;
    width: 8px;
    height: 1px;
    background: var(--gold);
}

/* ================= GALLERY ================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0.85rem;
}

.gallery-item {
    margin: 0;
    grid-column: span 4;
    position: relative;
    overflow: hidden;
    background: var(--surface);
    min-height: 220px;
}

.gallery-item--tall {
    grid-row: span 2;
    min-height: 460px;
}

.gallery-item--wide {
    grid-column: span 8;
}

.gallery-item__media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
}

.gallery-item:hover .gallery-item__media {
    transform: scale(1.06);
}

.gallery-item__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75) 100%);
}

.gallery-item__media--1 {
    background-image:
        linear-gradient(160deg, rgba(201, 162, 39, 0.25), rgba(5, 5, 5, 0.55)),
        linear-gradient(45deg, #2a2418, #0d0d0d);
}

.gallery-item__media--2 {
    background-image:
        linear-gradient(160deg, rgba(201, 162, 39, 0.2), rgba(5, 5, 5, 0.5)),
        linear-gradient(135deg, #1a1610, #111);
}

.gallery-item__media--3 {
    background-image:
        linear-gradient(160deg, rgba(201, 162, 39, 0.22), rgba(5, 5, 5, 0.5)),
        linear-gradient(200deg, #3a3020, #0a0a0a);
}

.gallery-item__media--4 {
    background-image:
        linear-gradient(160deg, rgba(201, 162, 39, 0.18), rgba(5, 5, 5, 0.55)),
        linear-gradient(90deg, #252018, #0f0f0f);
}

.gallery-item__media--5 {
    background-image:
        linear-gradient(160deg, rgba(201, 162, 39, 0.2), rgba(5, 5, 5, 0.5)),
        linear-gradient(315deg, #2c2418, #121212);
}

.gallery-item__media--6 {
    background-image:
        linear-gradient(160deg, rgba(201, 162, 39, 0.24), rgba(5, 5, 5, 0.55)),
        linear-gradient(60deg, #1f1a12, #0a0a0a);
}

.gallery-item figcaption {
    position: absolute;
    left: 1.1rem;
    bottom: 1.1rem;
    z-index: 2;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--white);
    letter-spacing: 0.04em;
}

@media (max-width: 991.98px) {
    .gallery-item,
    .gallery-item--wide {
        grid-column: span 6;
    }

    .gallery-item--tall {
        grid-row: span 1;
        min-height: 240px;
    }
}

@media (max-width: 575.98px) {
    .gallery-item,
    .gallery-item--wide {
        grid-column: span 12;
        min-height: 200px;
    }
}

/* ================= CTA BAND ================= */
.cta-band {
    padding: clamp(3.5rem, 8vw, 5rem) 0;
    background:
        radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201, 162, 39, 0.15), transparent 70%),
        var(--black);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.cta-band__title {
    font-size: clamp(1.85rem, 3.5vw, 2.6rem);
    margin-bottom: 0.75rem;
}

.cta-band p {
    color: var(--text-muted);
    max-width: 32rem;
    margin: 0 auto 1.75rem;
}

.cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
}

/* ================= CONTACT ================= */
.contact-block {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.35rem;
}

.contact-block > i {
    font-size: 1.15rem;
    color: var(--gold);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-block strong {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold);
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.contact-block p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-block a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
}

.contact-block a:hover {
    color: var(--gold-bright);
}

.appointment-box {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: clamp(1.75rem, 4vw, 2.5rem);
}

.appointment-box h3 {
    font-size: 1.65rem;
    margin-bottom: 0.35rem;
}

.appointment-box > p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
}

.form-label {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.appointment-form .form-control {
    padding: 0.8rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    background: var(--charcoal);
    color: var(--white);
    font-size: 0.95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.appointment-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.appointment-form .form-control:focus {
    background: var(--surface-raised);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
    color: var(--white);
}

.appointment-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23c9a227' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    background-size: 12px;
    padding-right: 2.25rem;
}

.appointment-form select.form-control option {
    background: var(--charcoal);
    color: var(--white);
}

.form-status {
    margin-bottom: 0.85rem;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    border: 1px solid var(--border-subtle);
}

.form-status--info {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

.form-status--success {
    color: #c8e6c9;
    background: rgba(76, 175, 80, 0.12);
    border-color: rgba(76, 175, 80, 0.35);
}

.form-status--error {
    color: #ffcdd2;
    background: rgba(229, 57, 53, 0.12);
    border-color: rgba(229, 57, 53, 0.35);
}

/* ================= FOOTER ================= */
.footer-main {
    background: var(--black);
    color: var(--text-muted);
    padding: clamp(3rem, 6vw, 4rem) 0 0;
    border-top: 1px solid var(--border);
}

.footer-main h5 {
    font-family: var(--font-sans);
    color: var(--gold);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 1.15rem;
}

.footer-main p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-muted);
}

.footer-main a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color var(--transition);
}

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

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.45rem;
}

.footer-links a {
    font-size: 0.9rem;
}

.footer-contact__item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 0.85rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact__item i {
    color: var(--gold);
    font-size: 0.95rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-bottom {
    background: #030303;
    padding: 1.1rem 0;
    margin-top: clamp(2.5rem, 5vw, 3rem);
    font-size: 0.8rem;
    border-top: 1px solid var(--border-subtle);
    color: rgba(255, 255, 255, 0.45);
}

.footer-right span {
    color: var(--gold);
    font-weight: 600;
}

/* ================= FAB ================= */
.fab-contact {
    position: fixed;
    right: max(1rem, env(safe-area-inset-right));
    bottom: max(1rem, env(safe-area-inset-bottom));
    z-index: 1040;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

.fab-contact__panel {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.65rem;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition:
        opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.28s,
        transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.fab-contact.is-open .fab-contact__panel {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-contact__action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease;
}

.fab-contact__action i {
    font-size: 1.35rem;
}

.fab-contact__action:hover {
    color: #fff;
    transform: scale(1.06);
}

.fab-contact__action--wa {
    background: linear-gradient(145deg, #2fe066, #25d366);
}

.fab-contact__action--call {
    background: linear-gradient(145deg, var(--gold-bright), var(--gold-deep));
    color: var(--black);
}

.fab-contact__action--call:hover {
    color: var(--black);
}

.fab-contact__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.35rem;
    height: 3.35rem;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    color: var(--gold);
    background: var(--surface-raised);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
    position: relative;
}

.fab-contact.is-open .fab-contact__toggle {
    background: linear-gradient(145deg, var(--gold-bright), var(--gold-deep));
    color: var(--black);
    border-color: transparent;
}

.fab-contact__toggle-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.fab-contact__toggle-icon--close {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

.fab-contact.is-open .fab-contact__toggle-icon--open {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.fab-contact.is-open .fab-contact__toggle-icon--close {
    opacity: 1;
    transform: rotate(0) scale(1);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991.98px) {
    .custom-navbar .navbar-collapse {
        padding: 1rem 0 0.75rem;
        border-top: 1px solid var(--border-subtle);
        margin-top: 0.75rem;
    }

    .custom-navbar .navbar-nav {
        align-items: flex-start !important;
        gap: 0.1rem;
    }

    .nav-link {
        padding: 0.7rem 0.5rem !important;
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }

    .btn-cta.ms-lg-3 {
        margin-top: 0.75rem;
        display: inline-block;
    }

    .navbar .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin: 0.15rem 0 0.5rem !important;
        box-shadow: none;
        border-color: var(--border-subtle);
        transform: none !important;
    }

    .navbar .dropend > .dropdown-menu {
        margin-left: 0.75rem !important;
        width: calc(100% - 0.75rem);
    }

    .navbar .dropend .dropdown-toggle::after {
        float: right;
        margin-top: 0.45rem;
        border-top: 0.35em solid currentColor;
        border-right: 0.35em solid transparent;
        border-left: 0.35em solid transparent;
        border-bottom: 0;
    }

    .dropdown-toggle::after {
        float: right;
        margin-top: 0.55rem;
    }
}

@media (max-width: 767.98px) {
    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__actions .btn {
        width: 100%;
        text-align: center;
    }

    .about-panel__meta {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 575.98px) {
    :root {
        --space-section: clamp(3.5rem, 10vw, 5rem);
    }

    .site-logo {
        max-width: 240px;
        max-height: 100px;
    }

    .hero__title {
        letter-spacing: 0.12em;
    }

    .hero__tagline {
        letter-spacing: 0.18em;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero__content,
    .hero__glow,
    .hero__scroll span {
        animation: none;
    }
}
