/**
 * Header Plomberie - Styles
 * Industrial-Refined Aesthetic with Copper Accents
 */

/* ==========================================================================
   CSS Custom Properties (Defaults)
   ========================================================================== */
.hp-header {
    /* Header */
    --header-height: 90px;
    --header-height-scrolled: 70px;
    --header-bg: #0F1C2E;
    --header-bg-scrolled: #0a1320;
    --header-border: rgba(184, 134, 83, 0.2);

    /* Navigation */
    --nav-color: #ffffff;
    --nav-color-hover: #B88653;
    --nav-color-active: #B88653;

    /* Phone */
    --phone-color: #ffffff;
    --phone-icon-color: #B88653;

    /* CTA */
    --cta-bg: #B88653;
    --cta-bg-hover: #d4a06a;
    --cta-color: #ffffff;
    --cta-color-hover: #0F1C2E;

    /* Mobile */
    --mobile-bg: #0F1C2E;
    --mobile-overlay: rgba(15, 28, 46, 0.98);
    --mobile-nav-color: #ffffff;
    --burger-color: #ffffff;

    /* Accent */
    --accent-color: #B88653;

    /* Timing */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   Header Base
   ========================================================================== */
.hp-header {
    position: relative;
    width: 100%;
    z-index: 9999;
    background: var(--header-bg);
    transition:
        background var(--transition-smooth),
        box-shadow var(--transition-smooth);
}

.hp-header--sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.hp-header.is-scrolled {
    background: var(--header-bg-scrolled);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Gradient Line Decoration */
.hp-header__gradient-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--accent-color) 20%,
        #d4a06a 50%,
        var(--accent-color) 80%,
        transparent 100%
    );
    opacity: 0.9;
}

/* ==========================================================================
   Header Inner
   ========================================================================== */
.hp-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    transition: height var(--transition-smooth);
}

.hp-header--shrink.is-scrolled .hp-header__inner {
    height: var(--header-height-scrolled);
}

/* ==========================================================================
   Logo
   ========================================================================== */
.hp-header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    transition: transform var(--transition-fast);
}

.hp-header__logo:hover {
    transform: scale(1.02);
}

.hp-header__logo img,
.hp-header__logo .custom-logo {
    height: auto;
    max-height: calc(var(--header-height) - 30px);
    object-fit: contain;
    transition:
        max-height var(--transition-smooth),
        width var(--transition-smooth);
}

.hp-header--shrink.is-scrolled .hp-header__logo img,
.hp-header--shrink.is-scrolled .hp-header__logo .custom-logo {
    max-height: calc(var(--header-height-scrolled) - 20px);
}

.hp-header__site-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

/* Custom logo class override */
.hp-header__logo .custom-logo-link {
    display: flex;
    align-items: center;
}

.hp-header__logo .custom-logo-link img {
    height: auto;
    max-height: calc(var(--header-height) - 30px);
    object-fit: contain;
}

/* ==========================================================================
   Desktop Navigation
   ========================================================================== */
.hp-header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.hp-header__menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hp-header__menu li {
    margin: 0;
    padding: 0;
    position: relative;
}

.hp-header__menu > li > a {
    display: inline-flex;
    align-items: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--nav-color);
    text-decoration: none;
    letter-spacing: 0.3px;
    padding: 8px 0;
    position: relative;
    transition: color var(--transition-fast);
}

.hp-header__menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), #d4a06a);
    transition: width var(--transition-smooth);
}

.hp-header__menu > li > a:hover {
    color: var(--nav-color-hover);
}

.hp-header__menu > li > a:hover::after {
    width: 100%;
}

.hp-header__menu > li.current-menu-item > a,
.hp-header__menu > li.current_page_item > a {
    color: var(--nav-color-active);
}

.hp-header__menu > li.current-menu-item > a::after,
.hp-header__menu > li.current_page_item > a::after {
    width: 100%;
}

/* Submenu */
.hp-header__menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: var(--header-bg-scrolled);
    border: 1px solid var(--header-border);
    border-radius: 8px;
    padding: 12px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity var(--transition-fast),
        transform var(--transition-fast);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hp-header__menu .sub-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--header-bg-scrolled);
    border-left: 1px solid var(--header-border);
    border-top: 1px solid var(--header-border);
}

.hp-header__menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.hp-header__menu .sub-menu li {
    margin: 0;
}

.hp-header__menu .sub-menu a {
    display: block;
    padding: 10px 24px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--nav-color);
    text-decoration: none;
    transition:
        color var(--transition-fast),
        background var(--transition-fast),
        padding-left var(--transition-fast);
}

.hp-header__menu .sub-menu a:hover {
    color: var(--nav-color-hover);
    background: rgba(184, 134, 83, 0.1);
    padding-left: 28px;
}

/* ==========================================================================
   Actions (Phone + CTA)
   ========================================================================== */
.hp-header__actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Phone */
.hp-header__phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--phone-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.hp-header__phone:hover {
    color: var(--nav-color-hover);
}

.hp-header__phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(184, 134, 83, 0.15);
    border-radius: 50%;
    color: var(--phone-icon-color);
    transition:
        background var(--transition-fast),
        transform var(--transition-bounce);
}

.hp-header__phone:hover .hp-header__phone-icon {
    background: rgba(184, 134, 83, 0.25);
    transform: scale(1.1) rotate(-10deg);
}

.hp-header__phone-icon svg {
    width: 18px;
    height: 18px;
}

/* CTA Button */
.hp-header__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--cta-color);
    background: var(--cta-bg);
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition:
        color var(--transition-fast),
        background var(--transition-fast),
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}

.hp-header__cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.hp-header__cta:hover {
    background: var(--cta-bg-hover);
    color: var(--cta-color-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 134, 83, 0.4);
}

.hp-header__cta:hover::before {
    opacity: 1;
}

.hp-header__cta-arrow {
    display: flex;
    transition: transform var(--transition-fast);
}

.hp-header__cta:hover .hp-header__cta-arrow {
    transform: translateX(4px);
}

/* ==========================================================================
   Burger Menu - Base
   ========================================================================== */
.hp-header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10001;
    position: relative;
    transition: background var(--transition-fast);
}

.hp-header__burger:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   Burger - Lines (Default)
   ========================================================================== */
.hp-header__burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--burger-color);
    border-radius: 2px;
    transition:
        transform var(--transition-smooth),
        opacity var(--transition-fast),
        width var(--transition-smooth);
    transform-origin: center;
}

.hp-burger--lines .hp-header__burger-line:nth-child(2) {
    width: 75%;
    margin-left: auto;
}

.hp-burger--lines.is-active .hp-header__burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hp-burger--lines.is-active .hp-header__burger-line:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hp-burger--lines.is-active .hp-header__burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   Burger - Lines Rounded
   ========================================================================== */
.hp-burger--lines-rounded .hp-header__burger-line {
    height: 3px;
    border-radius: 3px;
}

.hp-burger--lines-rounded .hp-header__burger-line:nth-child(2) {
    width: 70%;
}

.hp-burger--lines-rounded.is-active .hp-header__burger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hp-burger--lines-rounded.is-active .hp-header__burger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.hp-burger--lines-rounded.is-active .hp-header__burger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================================================
   Burger - Dots
   ========================================================================== */
.hp-burger--dots {
    flex-direction: row;
    gap: 5px;
}

.hp-burger__dot {
    width: 6px;
    height: 6px;
    background: var(--burger-color);
    border-radius: 50%;
    transition:
        transform var(--transition-smooth),
        opacity var(--transition-fast);
}

.hp-burger--dots.is-active .hp-burger__dot:nth-child(1) {
    transform: translateX(11px) rotate(45deg) scale(1.5);
}

.hp-burger--dots.is-active .hp-burger__dot:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hp-burger--dots.is-active .hp-burger__dot:nth-child(3) {
    transform: translateX(-11px) rotate(-45deg) scale(1.5);
}

/* ==========================================================================
   Burger - Grid 3x3
   ========================================================================== */
.hp-burger--grid {
    padding: 8px;
}

.hp-burger__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    width: 100%;
    height: 100%;
}

.hp-burger__grid span {
    width: 6px;
    height: 6px;
    background: var(--burger-color);
    border-radius: 50%;
    transition:
        transform var(--transition-smooth),
        opacity var(--transition-fast),
        background var(--transition-fast);
}

.hp-burger--grid.is-active .hp-burger__grid span:nth-child(1) {
    transform: translate(8px, 8px) rotate(45deg);
}

.hp-burger--grid.is-active .hp-burger__grid span:nth-child(2),
.hp-burger--grid.is-active .hp-burger__grid span:nth-child(4),
.hp-burger--grid.is-active .hp-burger__grid span:nth-child(6),
.hp-burger--grid.is-active .hp-burger__grid span:nth-child(8) {
    opacity: 0;
    transform: scale(0);
}

.hp-burger--grid.is-active .hp-burger__grid span:nth-child(3) {
    transform: translate(-8px, 8px) rotate(-45deg);
}

.hp-burger--grid.is-active .hp-burger__grid span:nth-child(5) {
    transform: scale(1.5);
    background: var(--accent-color);
}

.hp-burger--grid.is-active .hp-burger__grid span:nth-child(7) {
    transform: translate(8px, -8px) rotate(-45deg);
}

.hp-burger--grid.is-active .hp-burger__grid span:nth-child(9) {
    transform: translate(-8px, -8px) rotate(45deg);
}

/* ==========================================================================
   Burger - Arrow
   ========================================================================== */
.hp-burger--arrow {
    padding: 8px;
}

.hp-burger__arrow,
.hp-burger__close {
    position: absolute;
    width: 24px;
    height: 24px;
    color: var(--burger-color);
    transition:
        transform var(--transition-smooth),
        opacity var(--transition-fast);
}

.hp-burger__arrow {
    opacity: 1;
    transform: scale(1);
}

.hp-burger__close {
    opacity: 0;
    transform: scale(0.5) rotate(-90deg);
}

.hp-burger--arrow.is-active .hp-burger__arrow {
    opacity: 0;
    transform: scale(0.5) rotate(90deg);
}

.hp-burger--arrow.is-active .hp-burger__close {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* ==========================================================================
   Burger - Plus / Cross
   ========================================================================== */
.hp-burger--plus {
    padding: 10px;
}

.hp-burger__plus {
    position: relative;
    width: 20px;
    height: 20px;
}

.hp-burger__plus-h,
.hp-burger__plus-v {
    position: absolute;
    background: var(--burger-color);
    border-radius: 2px;
    transition: transform var(--transition-smooth);
}

.hp-burger__plus-h {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.hp-burger__plus-v {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.hp-burger--plus.is-active .hp-burger__plus-h {
    transform: translateY(-50%) rotate(180deg);
}

.hp-burger--plus.is-active .hp-burger__plus-v {
    transform: translateX(-50%) rotate(90deg);
}

/* ==========================================================================
   Burger - Circle with Lines
   ========================================================================== */
.hp-burger--circle {
    padding: 6px;
}

.hp-burger__circle {
    position: absolute;
    inset: 4px;
    color: var(--burger-color);
    transition: transform var(--transition-smooth);
}

.hp-burger__circle svg {
    width: 100%;
    height: 100%;
}

.hp-burger--circle .hp-header__burger-line {
    width: 50%;
}

.hp-burger--circle .hp-header__burger-line:nth-child(3) {
    width: 60%;
}

.hp-burger--circle .hp-header__burger-line:nth-child(4) {
    width: 40%;
}

.hp-burger--circle.is-active .hp-burger__circle {
    transform: rotate(180deg);
}

.hp-burger--circle.is-active .hp-header__burger-line:nth-child(2) {
    transform: translateY(8px) rotate(45deg);
    width: 70%;
}

.hp-burger--circle.is-active .hp-header__burger-line:nth-child(3) {
    opacity: 0;
}

.hp-burger--circle.is-active .hp-header__burger-line:nth-child(4) {
    transform: translateY(-8px) rotate(-45deg);
    width: 70%;
}

/* ==========================================================================
   Burger - Squeeze
   ========================================================================== */
.hp-burger--squeeze .hp-header__burger-line {
    transition:
        transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19),
        opacity 0.1s 0.14s ease-out;
}

.hp-burger--squeeze .hp-header__burger-line:nth-child(2) {
    width: 100%;
    margin: 0;
}

.hp-burger--squeeze.is-active .hp-header__burger-line {
    transition:
        transform 0.3s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1),
        opacity 0.1s ease-out;
}

.hp-burger--squeeze.is-active .hp-header__burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hp-burger--squeeze.is-active .hp-header__burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hp-burger--squeeze.is-active .hp-header__burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   Burger - Spin
   ========================================================================== */
.hp-burger--spin .hp-header__burger-line {
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hp-burger--spin .hp-header__burger-line:nth-child(2) {
    width: 100%;
    margin: 0;
}

.hp-burger--spin.is-active .hp-header__burger-line {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-delay: 0.12s;
}

.hp-burger--spin.is-active .hp-header__burger-line:nth-child(1) {
    transform: translateY(8px) rotate(225deg);
}

.hp-burger--spin.is-active .hp-header__burger-line:nth-child(2) {
    opacity: 0;
    transform: rotate(180deg);
}

.hp-burger--spin.is-active .hp-header__burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-225deg);
}

/* ==========================================================================
   Mobile Menu Overlay
   ========================================================================== */
.hp-mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--mobile-overlay);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.5s;
    overflow-y: auto;
    overflow-x: hidden;
}

.hp-mobile-menu.is-active {
    opacity: 1;
    visibility: visible;
}

.hp-mobile-menu__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 120px 24px 60px;
    position: relative;
}

/* Mobile Navigation */
.hp-mobile-menu__nav {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.hp-mobile-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hp-mobile-menu__list li {
    margin: 0;
    overflow: hidden;
}

.hp-mobile-menu__list > li > a {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--mobile-nav-color);
    text-decoration: none;
    padding: 16px 0;
    position: relative;
    transform: translateY(100%);
    opacity: 0;
    transition:
        color var(--transition-fast),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hp-mobile-menu.is-active .hp-mobile-menu__list > li > a {
    transform: translateY(0);
    opacity: 1;
}

/* Staggered animation */
.hp-mobile-menu__list > li:nth-child(1) > a { transition-delay: 0.1s; }
.hp-mobile-menu__list > li:nth-child(2) > a { transition-delay: 0.15s; }
.hp-mobile-menu__list > li:nth-child(3) > a { transition-delay: 0.2s; }
.hp-mobile-menu__list > li:nth-child(4) > a { transition-delay: 0.25s; }
.hp-mobile-menu__list > li:nth-child(5) > a { transition-delay: 0.3s; }
.hp-mobile-menu__list > li:nth-child(6) > a { transition-delay: 0.35s; }
.hp-mobile-menu__list > li:nth-child(7) > a { transition-delay: 0.4s; }
.hp-mobile-menu__list > li:nth-child(8) > a { transition-delay: 0.45s; }

.hp-mobile-menu__list > li > a::before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    transition: transform var(--transition-smooth);
}

.hp-mobile-menu__list > li > a:hover {
    color: var(--accent-color);
}

.hp-mobile-menu__list > li > a:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.hp-mobile-menu__list > li.current-menu-item > a,
.hp-mobile-menu__list > li.current_page_item > a {
    color: var(--accent-color);
}

.hp-mobile-menu__list > li.current-menu-item > a::before,
.hp-mobile-menu__list > li.current_page_item > a::before {
    transform: translateX(-50%) scaleX(1);
}

/* Mobile Submenu */
.hp-mobile-menu__list .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0 0 16px;
}

.hp-mobile-menu__list .sub-menu a {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 8px 0;
    transform: translateY(100%);
    opacity: 0;
    transition:
        color var(--transition-fast),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hp-mobile-menu.is-active .hp-mobile-menu__list .sub-menu a {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.4s;
}

.hp-mobile-menu__list .sub-menu a:hover {
    color: var(--accent-color);
}

/* Mobile Footer */
.hp-mobile-menu__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 48px;
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.5s;
}

.hp-mobile-menu.is-active .hp-mobile-menu__footer {
    opacity: 1;
    transform: translateY(0);
}

.hp-mobile-menu__phone {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--mobile-nav-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.hp-mobile-menu__phone svg {
    color: var(--accent-color);
}

.hp-mobile-menu__phone:hover {
    color: var(--accent-color);
}

.hp-mobile-menu__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--cta-color);
    background: var(--cta-bg);
    padding: 18px 48px;
    border-radius: 4px;
    text-decoration: none;
    transition:
        background var(--transition-fast),
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}

.hp-mobile-menu__cta:hover {
    background: var(--cta-bg-hover);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(184, 134, 83, 0.4);
}

/* Pipe Decoration */
.hp-mobile-menu__pipe-decoration {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 100px;
    height: 200px;
    color: var(--accent-color);
    pointer-events: none;
    opacity: 0;
    transform: translateX(50px);
    transition:
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.6s;
}

.hp-mobile-menu.is-active .hp-mobile-menu__pipe-decoration {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================================
   Pipe Accent Decoration (Desktop)
   ========================================================================== */
.hp-header--pipe::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--accent-color)
    );
    opacity: 0.3;
    pointer-events: none;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

/* Default mobile breakpoint: 1024px */
@media (max-width: 1024px) {
    .hp-header__nav,
    .hp-header__actions {
        display: none;
    }

    .hp-header__burger {
        display: flex;
    }

    .hp-header__inner {
        padding: 0 20px;
    }

    .hp-header--pipe::after {
        display: none;
    }
}

/* Tablet adjustments */
@media (max-width: 768px) {
    .hp-header {
        --header-height: 70px;
        --header-height-scrolled: 60px;
    }

    .hp-mobile-menu__list > li > a {
        font-size: 28px;
        padding: 12px 0;
    }

    .hp-mobile-menu__phone {
        font-size: 20px;
    }

    .hp-mobile-menu__cta {
        font-size: 14px;
        padding: 16px 40px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hp-header__inner {
        padding: 0 16px;
    }

    .hp-mobile-menu__content {
        padding: 100px 20px 40px;
    }

    .hp-mobile-menu__list > li > a {
        font-size: 24px;
    }

    .hp-mobile-menu__pipe-decoration {
        width: 60px;
        height: 120px;
        right: 10px;
        bottom: 10px;
    }
}

/* Body scroll lock when menu is open */
body.hp-menu-open {
    overflow: hidden;
}

/* ==========================================================================
   Custom Breakpoint Support via data-attribute
   ========================================================================== */

/* Breakpoint 768px */
.hp-header[data-breakpoint="768"] .hp-header__nav,
.hp-header[data-breakpoint="768"] .hp-header__actions {
    display: flex;
}

.hp-header[data-breakpoint="768"] .hp-header__burger {
    display: none;
}

@media (max-width: 768px) {
    .hp-header[data-breakpoint="768"] .hp-header__nav,
    .hp-header[data-breakpoint="768"] .hp-header__actions {
        display: none;
    }

    .hp-header[data-breakpoint="768"] .hp-header__burger {
        display: flex;
    }
}

/* Breakpoint 1024px (default) */
.hp-header[data-breakpoint="1024"] .hp-header__nav,
.hp-header[data-breakpoint="1024"] .hp-header__actions {
    display: flex;
}

.hp-header[data-breakpoint="1024"] .hp-header__burger {
    display: none;
}

@media (max-width: 1024px) {
    .hp-header[data-breakpoint="1024"] .hp-header__nav,
    .hp-header[data-breakpoint="1024"] .hp-header__actions {
        display: none;
    }

    .hp-header[data-breakpoint="1024"] .hp-header__burger {
        display: flex;
    }
}

/* Breakpoint 1200px */
.hp-header[data-breakpoint="1200"] .hp-header__nav,
.hp-header[data-breakpoint="1200"] .hp-header__actions {
    display: flex;
}

.hp-header[data-breakpoint="1200"] .hp-header__burger {
    display: none;
}

@media (max-width: 1200px) {
    .hp-header[data-breakpoint="1200"] .hp-header__nav,
    .hp-header[data-breakpoint="1200"] .hp-header__actions {
        display: none;
    }

    .hp-header[data-breakpoint="1200"] .hp-header__burger {
        display: flex;
    }
}

/* ==========================================================================
   Accessibility
   ========================================================================== */
.hp-header__burger:focus-visible,
.hp-header__cta:focus-visible,
.hp-header__phone:focus-visible,
.hp-header__logo:focus-visible,
.hp-header__menu a:focus-visible,
.hp-mobile-menu__list a:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hp-header,
    .hp-header *,
    .hp-mobile-menu,
    .hp-mobile-menu * {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
    .hp-header {
        position: relative !important;
        background: #ffffff !important;
        box-shadow: none !important;
    }

    .hp-header__burger,
    .hp-mobile-menu,
    .hp-header__gradient-line {
        display: none !important;
    }

    .hp-header__menu a,
    .hp-header__phone,
    .hp-header__cta {
        color: #000000 !important;
    }
}
