/* ============================================================
   WIKRAMARACHCHI HEARING CARE — Homepage Design System 2026
   Font: Plus Jakarta Sans | Light Premium Theme
   ============================================================ */

/* ── 1. Design Tokens ─────────────────────────────────────── */
:root {
    --hp-bg: #fbfaf8;
    --hp-surface: #ffffff;
    --hp-ink: #37332d;
    --hp-ink-2: #56493e;
    --hp-ink-3: #8c8278;
    --hp-accent: #a47d5c;
    --hp-accent-hover: #8c6849;
    --hp-accent-alt: #464138;
    --hp-sand: #cdc2b8;
    --hp-border: rgba(70, 65, 56, 0.12);
    --hp-glass-bg: rgba(255, 255, 255, 0.88);
    --hp-glass-border: rgba(205, 194, 184, 0.6);
    --hp-shadow-sm: 0 4px 16px rgba(55, 51, 45, 0.06);
    --hp-shadow-md: 0 12px 40px rgba(55, 51, 45, 0.08);
    --hp-shadow-lg: 0 24px 64px rgba(55, 51, 45, 0.12);
    --hp-radius-sm: 12px;
    --hp-radius-md: 20px;
    --hp-radius-lg: 28px;
    --hp-radius-xl: 36px;
    --hp-font: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --hp-transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── 0. Lenis Luxury Smooth Scrolling Integration ─────────── */
html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* Fallback smooth scroll when Lenis is not active */
@media (prefers-reduced-motion: no-preference) {
    html:not(.lenis) {
        scroll-behavior: smooth;
    }
}

/* Honor accessibility preference for users who request reduced motion */
/* ── Root Viewport & Overflow Safety ──────────────────────── */
html {
    overflow-x: clip;
    max-width: 100%;
    box-sizing: border-box;
}

body {
    overflow-x: clip;
    max-width: 100%;
    width: 100%;
    position: relative;
}

.wrapper {
    overflow-x: clip;
    width: 100%;
    position: relative;
}

*, *::before, *::after {
    box-sizing: inherit;
}

img, video {
    max-width: 100%;
    height: auto;
}

@media (prefers-reduced-motion: reduce) {
    html.lenis,
    html.lenis body {
        scroll-behavior: auto !important;
    }
}

/* ── 2. Scoped Resets & Typography ────────────────────────── */
.page-template-home-page h1,
.page-template-home-page h2,
.page-template-home-page h3,
.page-template-home-page h4,
.page-template-home-page h5,
.page-template-home-page p,
.page-template-home-page a,
.page-template-home-page span,
.page-template-home-page div,
.home h1,
.home h2,
.home h3,
.home h4,
.home p,
.home a {
    font-family: var(--hp-font) !important;
}

/* ── HEADER ──────────────────────────────────────────────── */
/* ── 3. HEADER — Dark Luxury Modern Nav (Matching Footer) ── */
#header-sec-1.hp-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 0 !important;
    background: linear-gradient(180deg, rgba(40, 36, 31, 0.94) 0%, rgba(30, 27, 23, 0.92) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(205, 194, 184, 0.15);
    transition: box-shadow var(--hp-transition), background var(--hp-transition), border-color var(--hp-transition);
}

#header-sec-1.hp-header.scrolled {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
    background: linear-gradient(180deg, rgba(32, 29, 25, 0.98) 0%, rgba(24, 21, 18, 0.98) 100%);
    border-bottom: 1px solid rgba(164, 125, 92, 0.3);
}

.hp-nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 1rem;
}

.hp-nav-brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hp-nav-brand-link:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

.hp-nav-logo img.hp-logo-circle {
    width: 46px !important;
    height: 46px !important;
    object-fit: contain;
    border-radius: 50%;
    background: #ffffff;
    padding: 2px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hp-nav-brand-link:hover img.hp-logo-circle {
    transform: scale(1.05);
}

.hp-nav-brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hp-brand-name {
    font-family: var(--hp-font);
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hp-brand-tagline {
    font-family: var(--hp-font);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--hp-sand);
    line-height: 1.2;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

/* Navigation menu styles */
.hp-nav-menu {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hp-nav-menu>li {
    position: relative;
}

.hp-nav-menu>li>a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.55rem 1rem !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.88) !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    letter-spacing: 0.03em !important;
    border-radius: 50px;
    transition: background var(--hp-transition), color var(--hp-transition), transform var(--hp-transition);
    white-space: nowrap;
}

.hp-nav-menu>li>a:hover {
    background: rgba(164, 125, 92, 0.2) !important;
    color: var(--hp-sand) !important;
}

.hp-nav-menu>li.current-menu-item>a,
.hp-nav-menu>li.active>a {
    font-weight: 700 !important;
    color: #ffffff !important;
    background: rgba(164, 125, 92, 0.3) !important;
    border: 1px solid rgba(164, 125, 92, 0.5) !important;
    box-shadow: 0 2px 12px rgba(164, 125, 92, 0.25);
}

/* Dropdown */
.hp-nav-menu .dropdown-menu {
    border: 1px solid rgba(205, 194, 184, 0.2) !important;
    border-radius: var(--hp-radius-md) !important;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(205, 194, 184, 0.15) !important;
    background: linear-gradient(180deg, #2e2a25 0%, #201d19 100%) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    padding: 0.6rem !important;
    min-width: 230px;
    margin-top: 10px;
}

.hp-nav-menu .dropdown-item {
    border-radius: 10px !important;
    padding: 0.65rem 1rem !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    border-bottom: none !important;
    transition: all var(--hp-transition);
}

.hp-nav-menu .dropdown-item:hover,
.hp-nav-menu .dropdown-item:focus {
    background: rgba(164, 125, 92, 0.28) !important;
    color: #ffffff !important;
    padding-left: 1.25rem !important;
}

/* Book Appointment CTA */
.hp-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.65rem 1.5rem;
    background: var(--hp-accent);
    color: #ffffff !important;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none !important;
    border-radius: 50px;
    border: 1.5px solid rgba(205, 194, 184, 0.25);
    white-space: nowrap;
    transition: all var(--hp-transition);
    box-shadow: 0 4px 18px rgba(164, 125, 92, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hp-nav-cta:hover {
    background: var(--hp-accent-hover);
    border-color: rgba(205, 194, 184, 0.4);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(164, 125, 92, 0.55);
}

.hp-nav-cta svg {
    flex-shrink: 0;
}

/* Hamburger */
.hp-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(205, 194, 184, 0.25);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    gap: 5px;
    transition: all var(--hp-transition);
}

.hp-hamburger:hover,
.hp-hamburger.active {
    background: rgba(164, 125, 92, 0.2);
    border-color: var(--hp-accent);
}

.hp-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hp-hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--hp-sand);
}

.hp-hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hp-hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--hp-sand);
}

/* ── Mobile Navigation Backdrop Scrim ─────────────────────── */
.hp-mobile-backdrop {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99990;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.hp-mobile-backdrop.active,
.hp-mobile-backdrop:not([hidden]) {
    opacity: 1;
    pointer-events: auto;
}

/* ── Mobile Navigation Drawer (100% Solid Opaque Luxury Panel) */
#header-sec-1 #hp-mobile-nav,
.hp-mobile-nav {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    width: 100%;
    background: #191613 !important; /* 100% solid rich dark espresso - zero bleed-through */
    border-bottom: 2px solid rgba(164, 125, 92, 0.4);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
    z-index: 99999;
    max-height: calc(100dvh - 76px);
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 1rem 1.5rem max(2rem, env(safe-area-inset-bottom, 2rem));
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

#header-sec-1 #hp-mobile-nav.open,
.hp-mobile-nav.open,
#header-sec-1 #hp-mobile-nav:not([hidden]),
.hp-mobile-nav:not([hidden]) {
    display: block !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

body.hp-nav-open {
    overflow: hidden !important;
    touch-action: none;
}

.hp-mobile-nav-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* ── Mobile Navigation Menu List (Clean Vertical Stack) ───── */
#header-sec-1 #hp-mobile-nav .hp-mobile-nav-list,
.hp-mobile-nav .hp-mobile-nav-list {
    display: flex !important;
    flex-direction: column !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 1rem 0 !important;
    width: 100% !important;
}

#header-sec-1 #hp-mobile-nav .hp-mobile-nav-list > li,
.hp-mobile-nav .hp-mobile-nav-list > li {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid rgba(205, 194, 184, 0.1) !important;
    position: relative !important;
}

#header-sec-1 #hp-mobile-nav .hp-mobile-nav-list > li:last-child,
.hp-mobile-nav .hp-mobile-nav-list > li:last-child {
    border-bottom: none !important;
}

#header-sec-1 #hp-mobile-nav .hp-mobile-nav-list > li > a,
#header-sec-1 #hp-mobile-nav .hp-mobile-nav-list > li > .nav-link,
.hp-mobile-nav .hp-mobile-nav-list > li > a,
.hp-mobile-nav .hp-mobile-nav-list > li > .nav-link {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    min-height: 52px !important;
    padding: 0.95rem 0.75rem !important;
    font-family: var(--hp-font) !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.92) !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    letter-spacing: 0.03em !important;
    background: transparent !important;
    border: none !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    transition: all 0.2s ease !important;
    white-space: normal !important;
    box-sizing: border-box !important;
}

#header-sec-1 #hp-mobile-nav .hp-mobile-nav-list > li > a:hover,
#header-sec-1 #hp-mobile-nav .hp-mobile-nav-list > li > a:active,
#header-sec-1 #hp-mobile-nav .hp-mobile-nav-list > li > .nav-link:hover,
#header-sec-1 #hp-mobile-nav .hp-mobile-nav-list > li > .nav-link:active,
.hp-mobile-nav .hp-mobile-nav-list > li > a:hover,
.hp-mobile-nav .hp-mobile-nav-list > li > .nav-link:hover {
    color: #ffffff !important;
    background: rgba(164, 125, 92, 0.16) !important;
    padding-left: 1.15rem !important;
}

/* Active Item */
#header-sec-1 #hp-mobile-nav .hp-mobile-nav-list > li.current-menu-item > a,
#header-sec-1 #hp-mobile-nav .hp-mobile-nav-list > li.active > a,
#header-sec-1 #hp-mobile-nav .hp-mobile-nav-list > li.current-menu-item > .nav-link,
#header-sec-1 #hp-mobile-nav .hp-mobile-nav-list > li.active > .nav-link {
    color: #ffffff !important;
    font-weight: 700 !important;
    background: rgba(164, 125, 92, 0.22) !important;
    border-left: 3px solid var(--hp-accent) !important;
    border-radius: 0 8px 8px 0 !important;
    padding-left: 1.15rem !important;
    box-shadow: none !important;
    border-top: none !important;
    border-right: none !important;
    border-bottom: none !important;
}

/* ── Dropdown Accordion Toggle Chevron ────────────────────── */
#header-sec-1 #hp-mobile-nav .hp-mobile-nav-list .dropdown-toggle::after,
.hp-mobile-nav .hp-mobile-nav-list .dropdown-toggle::after {
    display: inline-block !important;
    width: 9px !important;
    height: 9px !important;
    border: none !important;
    border-right: 2px solid rgba(205, 194, 184, 0.8) !important;
    border-bottom: 2px solid rgba(205, 194, 184, 0.8) !important;
    transform: rotate(45deg) !important;
    transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    margin-left: auto !important;
    margin-right: 6px !important;
    content: "" !important;
    vertical-align: middle !important;
}

#header-sec-1 #hp-mobile-nav .hp-mobile-nav-list .dropdown.hp-dropdown-open > .dropdown-toggle::after,
.hp-mobile-nav .hp-mobile-nav-list .dropdown.hp-dropdown-open > .dropdown-toggle::after {
    transform: rotate(-135deg) translateY(-2px) !important;
    border-color: var(--hp-accent) !important;
}

/* ── Dropdown Submenu (Accordion style) ───────────────────── */
#header-sec-1 #hp-mobile-nav .hp-mobile-nav-list .dropdown-menu,
.hp-mobile-nav .hp-mobile-nav-list .dropdown-menu {
    position: static !important;
    float: none !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    display: none !important;
    background: rgba(0, 0, 0, 0.35) !important;
    border: none !important;
    border-left: 2px solid var(--hp-accent) !important;
    border-radius: 0 10px 10px 0 !important;
    padding: 0.4rem 0.5rem 0.4rem 0.75rem !important;
    margin: 0.25rem 0 0.5rem 0.5rem !important;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.4) !important;
    list-style: none !important;
}

#header-sec-1 #hp-mobile-nav .hp-mobile-nav-list .dropdown.hp-dropdown-open > .dropdown-menu,
#header-sec-1 #hp-mobile-nav .hp-mobile-nav-list .dropdown-menu.show,
.hp-mobile-nav .hp-mobile-nav-list .dropdown.hp-dropdown-open > .dropdown-menu,
.hp-mobile-nav .hp-mobile-nav-list .dropdown-menu.show {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    animation: hpNavAccordionFade 0.25s ease-out forwards;
}

@keyframes hpNavAccordionFade {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#header-sec-1 #hp-mobile-nav .hp-mobile-nav-list .dropdown-item,
.hp-mobile-nav .hp-mobile-nav-list .dropdown-item {
    display: block !important;
    width: 100% !important;
    padding: 0.75rem 1rem !important;
    font-family: var(--hp-font) !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
    border-radius: 6px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
    transition: all 0.2s ease !important;
}

#header-sec-1 #hp-mobile-nav .hp-mobile-nav-list .dropdown-item:last-child,
.hp-mobile-nav .hp-mobile-nav-list .dropdown-item:last-child {
    border-bottom: none !important;
}

#header-sec-1 #hp-mobile-nav .hp-mobile-nav-list .dropdown-item:hover,
#header-sec-1 #hp-mobile-nav .hp-mobile-nav-list .dropdown-item:active,
.hp-mobile-nav .hp-mobile-nav-list .dropdown-item:hover,
.hp-mobile-nav .hp-mobile-nav-list .dropdown-item:active {
    color: #ffffff !important;
    background: rgba(164, 125, 92, 0.25) !important;
    padding-left: 1.25rem !important;
}

/* ── Mobile CTA & Contact ─────────────────────────────────── */
.hp-mobile-nav-footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 0.5rem;
}

#header-sec-1 #hp-mobile-nav .hp-mobile-cta,
.hp-mobile-cta {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    min-height: 52px !important;
    padding: 0.95rem 1.5rem !important;
    background: linear-gradient(135deg, var(--hp-accent) 0%, var(--hp-accent-hover) 100%) !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    font-family: var(--hp-font) !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    box-shadow: 0 6px 20px rgba(164, 125, 92, 0.45) !important;
    border: 1.5px solid rgba(205, 194, 184, 0.3) !important;
    transition: all 0.25s ease !important;
}

#header-sec-1 #hp-mobile-nav .hp-mobile-cta:hover,
#header-sec-1 #hp-mobile-nav .hp-mobile-cta:active,
.hp-mobile-cta:hover,
.hp-mobile-cta:active {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(164, 125, 92, 0.6) !important;
    color: #ffffff !important;
}

.hp-mobile-contact-info {
    margin-top: 1rem !important;
    text-align: center !important;
    padding-top: 0.85rem !important;
    border-top: 1px solid rgba(205, 194, 184, 0.12) !important;
}

.hp-mobile-phone-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    color: var(--hp-sand) !important;
    text-decoration: none !important;
    letter-spacing: 0.02em !important;
    transition: color 0.2s ease !important;
}

.hp-mobile-phone-link:hover,
.hp-mobile-phone-link:active {
    color: #ffffff !important;
}


/* ── BUTTONS ──────────────────────────────────────────────── */
.hp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.875rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none !important;
    transition: all var(--hp-transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-family: var(--hp-font) !important;
}

.hp-btn-primary {
    background: var(--hp-accent) !important;
    color: #ffffff !important;
    border-color: var(--hp-accent) !important;
    box-shadow: 0 4px 16px rgba(164, 125, 92, 0.25);
}

.hp-btn-primary:hover {
    background: var(--hp-accent-hover) !important;
    border-color: var(--hp-accent-hover) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(164, 125, 92, 0.4);
}

.hp-btn-secondary {
    background: transparent !important;
    color: var(--hp-ink) !important;
    border-color: var(--hp-sand) !important;
}

.hp-btn-secondary:hover {
    border-color: var(--hp-accent) !important;
    background: var(--hp-accent) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(164, 125, 92, 0.25);
}

.hp-btn svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}


/* ── ANIMATIONS ───────────────────────────────────────── */
/* ── 5. ANIMATIONS ───────────────────────────────────────── */
@keyframes hpFadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hpFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes hpBlink {
    50% {
        opacity: 0;
    }
}

@keyframes hpFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ── SECTION HEADINGS ─────────────────────────────────── */
/* ── 7. SECTION HEADING ─────────────────────────────────── */
.hp-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.hp-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 1rem;
    background: rgba(164, 125, 92, 0.12);
    border: 1px solid rgba(164, 125, 92, 0.25);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--hp-accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hp-section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--hp-ink);
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin: 0 0 1rem;
}

.hp-section-desc {
    font-size: 1.0625rem;
    color: var(--hp-ink-2);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* ── FOOTER ──────────────────────────────────────────────── */
/* ── 13. FOOTER — Luxury Modern Dark Theme ─────────────────── */
.hp-footer {
    position: relative;
    background: linear-gradient(180deg, #37332d 0%, #25221e 100%);
    color: rgba(255, 255, 255, 0.85);
    padding: 0 0 0;
    margin-top: 0 !important;
    font-family: var(--hp-font) !important;
    border-top: 1px solid rgba(205, 194, 184, 0.15);
    overflow: hidden;
}

.hp-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(205, 194, 184, 0.25) 30%, rgba(164, 125, 92, 0.8) 50%, rgba(205, 194, 184, 0.25) 70%, transparent);
}

.hp-footer::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(164, 125, 92, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* Pre-footer CTA Card */
.hp-footer-cta-wrapper {
    max-width: 1200px;
    margin: 3rem auto 2.5rem;
    padding: 0 2rem;
    position: relative;
    z-index: 5;
}

.hp-footer-cta-card {
    background: linear-gradient(135deg, rgba(205, 194, 184, 0.12) 0%, rgba(164, 125, 92, 0.08) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(205, 194, 184, 0.22);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(205, 194, 184, 0.2);
}

.hp-footer-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    background: rgba(164, 125, 92, 0.2);
    border: 1px solid rgba(164, 125, 92, 0.35);
    font-size: 0.725rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #cdc2b8;
    margin-bottom: 0.75rem;
}

.hp-footer-cta-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.hp-footer-cta-desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    max-width: 620px;
    line-height: 1.6;
}

.hp-footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--hp-accent);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.9375rem;
    padding: 0.95rem 1.85rem;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(164, 125, 92, 0.35);
    white-space: nowrap;
}

.hp-footer-cta-btn:hover {
    background: var(--hp-accent-hover);
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 30px rgba(164, 125, 92, 0.5);
}

.hp-footer-cta-btn svg {
    transition: transform 0.3s ease;
}

.hp-footer-cta-btn:hover svg {
    transform: translateX(4px);
}

/* Inner Layout */
.hp-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    position: relative;
    z-index: 2;
}

.hp-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.1fr 1.3fr;
    gap: 3.5rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(205, 194, 184, 0.12);
}

/* Brand Column & Navbar-Style Logo */
.hp-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hp-footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none !important;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hp-footer-brand-link:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.hp-footer-logo-circle {
    width: 46px !important;
    height: 46px !important;
    object-fit: contain;
    border-radius: 50%;
    background: #ffffff;
    padding: 3px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.hp-footer-brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hp-footer-brand-name {
    font-family: var(--hp-font);
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hp-footer-brand-tagline {
    font-family: var(--hp-font);
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--hp-sand);
    line-height: 1.25;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 2px;
}

.hp-footer-est-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.725rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(205, 194, 184, 0.6);
    margin-bottom: 1.25rem;
}

.hp-est-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #a47d5c;
    box-shadow: 0 0 8px #a47d5c;
}

.hp-footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.hp-footer-socials {
    display: flex;
    gap: 0.85rem;
}

.hp-footer-social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(205, 194, 184, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
}

.hp-footer-social-btn:hover {
    background: var(--hp-accent);
    color: #ffffff !important;
    border-color: var(--hp-accent);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(164, 125, 92, 0.4);
}

.hp-footer-social-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.hp-footer-social-btn:hover svg {
    transform: scale(1.1);
}

.hp-footer-social-btn .hp-yt-play {
    fill: #0d0f15;
    transition: fill 0.3s ease;
}

.hp-footer-social-btn:hover .hp-yt-play {
    fill: #0d0f15;
}

/* Column Headings */
.hp-footer-col-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.65rem;
}

.hp-footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, #a47d5c, rgba(205, 194, 184, 0.3));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.hp-footer-col:hover .hp-footer-col-title::after {
    width: 48px;
}

/* Nav Links in Footer */
.hp-footer-nav,
.hp-footer .list-inline {
    list-style: none;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column;
    gap: 0.85rem;
}

.hp-footer-nav li a,
.hp-footer .list-inline li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
    transition: all 0.25s ease;
    font-family: var(--hp-font) !important;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hp-footer-nav li a::before,
.hp-footer .list-inline li a::before {
    content: '›';
    font-size: 1.1rem;
    line-height: 1;
    color: var(--hp-accent);
    transition: transform 0.25s ease, color 0.25s ease;
}

.hp-footer-nav li a:hover,
.hp-footer .list-inline li a:hover {
    color: var(--hp-sand) !important;
    transform: translateX(4px);
    text-shadow: 0 0 10px rgba(205, 194, 184, 0.4);
}

.hp-footer-nav li a:hover::before,
.hp-footer .list-inline li a:hover::before {
    color: var(--hp-sand);
    transform: translateX(2px);
}

/* Contact Items */
.hp-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.15rem;
}

.hp-footer-contact-item .hp-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(205, 194, 184, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.hp-footer-contact-item:hover .hp-contact-icon {
    background: rgba(164, 125, 92, 0.25);
    color: var(--hp-sand);
    border-color: var(--hp-accent);
    transform: scale(1.05);
}

.hp-contact-text,
.hp-footer-contact-item p,
.hp-footer-contact-item a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7) !important;
    margin: 0;
    line-height: 1.55;
    font-family: var(--hp-font) !important;
    text-decoration: none !important;
    transition: color 0.25s ease;
}

.hp-footer-contact-item a:hover {
    color: var(--hp-sand) !important;
}

.hp-footer-hours-badge {
    margin-top: 1.5rem;
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(205, 194, 184, 0.1);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.785rem;
    color: rgba(255, 255, 255, 0.75);
}

.hp-footer-hours-badge svg {
    color: var(--hp-accent);
    flex-shrink: 0;
}

/* Footer Bottom Bar */
.hp-footer-bar {
    background: rgba(0, 0, 0, 0.35);
    padding: 1.5rem 0;
    position: relative;
    z-index: 2;
}

.hp-footer-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hp-footer-bar-inner p {
    font-size: 0.835rem;
    color: rgba(205, 194, 184, 0.5) !important;
    margin: 0;
    font-family: var(--hp-font) !important;
}

.hp-footer-bar-inner a {
    color: var(--hp-sand) !important;
    text-decoration: none !important;
    transition: color 0.25s ease;
    font-weight: 500;
}

.hp-footer-bar-inner a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}

/* ── BACK TO TOP & REVEAL ─────────────────────────────────── */
/* Floating Back-To-Top Button */
.hp-back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(55, 51, 45, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(205, 194, 184, 0.3);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hp-back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hp-back-to-top:hover {
    background: var(--hp-accent);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(164, 125, 92, 0.4);
}

/* ── 14. SCROLL-REVEAL ──────────────────────────────────── */
.hp-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.hp-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE (GLOBAL) ─────────────────────────────────── */
@media (max-width: 1024px) {
    .hp-nav-menu {
        display: none !important;
    }

    .hp-hamburger {
        display: flex !important;
    }

    .hp-nav-inner {
        padding: 0 1.5rem;
    }

    .hp-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .hp-footer-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 2.25rem 2rem;
    }

    .hp-footer-cta-desc {
        margin: 0 auto;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .hp-nav-cta {
        padding: 0.55rem 1.1rem;
        font-size: 0.84rem;
        gap: 6px;
    }
}

@media (max-width: 640px) {
    #header-sec-1.hp-header {
        border-bottom-color: rgba(205, 194, 184, 0.2);
    }

    .hp-nav-inner {
        height: 66px;
        padding: 0 1rem;
        gap: 0.5rem;
    }

    /* On phone screens, hide the crowded top-bar CTA. Primary CTA is full-width inside the drawer & hero */
    .hp-nav-cta {
        display: none !important;
    }

    .hp-nav-brand-link {
        gap: 8px;
        max-width: calc(100% - 56px);
    }

    .hp-nav-logo img.hp-logo-circle {
        width: 38px !important;
        height: 38px !important;
        padding: 1px;
    }

    .hp-brand-name {
        font-size: clamp(0.92rem, 4.2vw, 1.08rem);
        line-height: 1.1;
    }

    .hp-brand-tagline {
        font-size: 0.64rem;
        letter-spacing: 0.05em;
    }

    .hp-hamburger {
        display: flex !important;
        width: 42px;
        height: 42px;
        flex-shrink: 0;
    }

    .hp-mobile-backdrop {
        top: 66px;
    }

    #header-sec-1 #hp-mobile-nav,
    .hp-mobile-nav {
        top: 66px;
        max-height: calc(100dvh - 66px);
        max-height: calc(100vh - 66px);
        padding: 1rem 1.25rem max(2rem, env(safe-area-inset-bottom, 2rem));
    }

    .hp-footer-grid {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .hp-footer-bar-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .hp-footer-cta-card {
        padding: 1.75rem 1.25rem;
        gap: 1.5rem;
    }

    .hp-footer-cta-title {
        font-size: 1.35rem;
    }

    .hp-back-to-top {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 42px;
        height: 42px;
    }

    .hp-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.875rem;
        width: 100%;
    }
}

@media (max-width: 360px) {
    .hp-nav-inner {
        padding: 0 0.75rem;
    }

    .hp-nav-brand-link {
        gap: 6px;
    }

    .hp-brand-name {
        font-size: 0.88rem;
    }

    .hp-brand-tagline {
        font-size: 0.58rem;
    }

    .hp-hamburger {
        width: 38px;
        height: 38px;
    }
}



/* ── OWL CAROUSEL OVERRIDES ─────────────────────────── */
/* ── 16. OWL CAROUSEL OVERRIDES ─────────────────────────── */
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--hp-accent) !important;
}

.owl-theme .owl-nav button.owl-prev,
.owl-theme .owl-nav button.owl-next {
    background: var(--hp-surface) !important;
    border: 1px solid var(--hp-border) !important;
    border-radius: 50% !important;
    width: 42px !important;
    height: 42px !important;
    box-shadow: var(--hp-shadow-sm) !important;
    transition: all var(--hp-transition) !important;
    color: var(--hp-ink) !important;
}

.owl-theme .owl-nav button:hover {
    background: var(--hp-accent) !important;
    border-color: var(--hp-accent) !important;
    color: #ffffff !important;
}

/* ── UTILITY ─────────────────────────────────────────── */
/* ── 17. UTILITY ─────────────────────────────────────────── */
.hp-divider {
    width: 48px;
    height: 4px;
    background: var(--hp-accent);
    border-radius: 2px;
    margin: 0 auto 1.5rem;
    display: block;
}

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