/* ═══════════════════════════════════════════════════════════════
   HERO — 2026 Premium Edition
═══════════════════════════════════════════════════════════════ */

:root {
    --gold:        #C9A84C;
    --gold-light:  #E8C96A;
    --gold-dim:    rgba(201, 168, 76, 0.18);
    --gold-glow:   rgba(201, 168, 76, 0.08);
}

/* Slow Ken-Burns zoom on the photo */
.hero-bg-img {
    animation: heroZoom 18s ease-out forwards;
    transform-origin: center center;
}

@keyframes heroZoom {
    from { transform: scale(1.08); }
    to   { transform: scale(1);    }
}

/* Cinematic multi-layer overlay */
.hero-overlay {
    background:
        /* black vignette edges */
        radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.72) 100%),
        /* dark base */
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.55) 0%,
            rgba(0,0,0,0.30) 40%,
            rgba(0,0,0,0.50) 75%,
            rgba(10,6,2,0.88) 100%
        );
}

/* === Corner ornaments === */
.hero-corner {
    position: absolute;
    z-index: 5;
    width: 60px;
    height: 60px;
    pointer-events: none;
    animation: fadeIn 1.4s ease-out 0.8s both;
}

.hero-corner--tl { top: 28px;    left: 28px;    border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.hero-corner--tr { top: 28px;    right: 28px;   border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.hero-corner--bl { bottom: 28px; left: 28px;    border-bottom: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.hero-corner--br { bottom: 28px; right: 28px;   border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }

@media (max-width: 640px) {
    .hero-corner { width: 36px; height: 36px; top: 14px; bottom: 14px; left: 14px; right: 14px; }
}

/* === Gold ornamental lines & diamonds === */
.hero-gold-line {
    display: block;
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.hero-gold-line-short {
    display: block;
    width: 48px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-light), transparent);
}

.hero-diamond {
    display: block;
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.hero-diamond-sm {
    display: block;
    width: 4px;
    height: 4px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
    opacity: 0.7;
}

/* === Italic second headline line === */
.hero-title-italic {
    font-style: italic;
    background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 55%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === CTA Buttons === */
.hero-btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% 100%;
    color: #111111;
    border: none;
    letter-spacing: 0.12em;
    transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 24px rgba(201, 168, 76, 0.35);
    text-decoration: none;
    display: inline-block;
}

.hero-btn-primary:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.55);
    color: #111111;
}

.hero-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(201, 168, 76, 0.5);
    letter-spacing: 0.12em;
    backdrop-filter: blur(8px);
    transition: border-color 0.3s, background 0.3s, transform 0.2s;
    text-decoration: none;
    display: inline-block;
}

.hero-btn-secondary:hover {
    border-color: var(--gold);
    background: var(--gold-dim);
    transform: translateY(-2px);
    color: #ffffff;
}

/* === Scroll indicator === */
.hero-scroll {
    animation: fadeIn 1s ease-out 1.6s both;
}

.hero-scroll-mouse {
    width: 24px;
    height: 38px;
    border: 1px solid rgba(201, 168, 76, 0.5);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
    margin: 0 auto;
}

.hero-scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%   { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

/* === Mobile Menu === */
#mobile-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #f3f4f6;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 1rem 1.5rem;
}

#mobile-nav.open {
    display: flex;
}

#mobile-nav a {
    padding: 0.75rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
    border-bottom: 1px solid #f3f4f6;
    text-decoration: none;
    transition: color 0.2s;
}

#mobile-nav a:last-child {
    border-bottom: none;
}

#mobile-nav a:hover {
    color: var(--burgundy);
}

/* === Desktop Nav Menu Reset === */
.primary-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-menu li {
    margin: 0;
    padding: 0;
}

.primary-menu a {
    color: rgba(17, 17, 17, 0.7);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a {
    color: var(--black);
}

/* === WP Nav Menu Wrapper === */
.nav-menu-wrapper {
    display: none;
}

@media (min-width: 768px) {
    .nav-menu-wrapper {
        display: block;
    }
}

/* === Hero Animations === */
.hero-label {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(16px);
}

.hero-title {
    animation: fadeIn 0.8s ease-out 0.2s forwards;
    opacity: 0;
    transform: translateY(16px);
}

.hero-desc {
    animation: fadeIn 0.8s ease-out 0.4s forwards;
    opacity: 0;
    transform: translateY(16px);
}

.hero-cta {
    animation: fadeIn 0.8s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateY(16px);
}

/* === Grayscale hover === */
.grayscale-hover {
    filter: grayscale(100%);
    transition: filter 0.7s ease;
}

.grayscale-hover:hover {
    filter: grayscale(0%);
}

/* === Contact form messages === */
.form-success {
    background-color: #d1fae5;
    border: 1px solid #6ee7b7;
    color: #065f46;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.form-error {
    background-color: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

/* === Hamburger icon === */
#mobile-menu-toggle {
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    #mobile-menu-toggle {
        display: none;
    }
}

/* === Footer newsletter form === */
.footer-email-form input[type="email"] {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s;
    color: var(--black);
}

.footer-email-form input[type="email"]:focus {
    border-color: var(--burgundy);
}

.footer-email-form button {
    width: 100%;
    background: var(--black);
    color: #ffffff;
    padding: 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.footer-email-form button:hover {
    background-color: var(--burgundy);
}
