:root {
    --egr-bg: #0d0d0d;
    --egr-bg-soft: #141414;
    --egr-gold: #c9a962;
    --egr-gold-dim: #9a7b3a;
    --egr-cream: #f5f1e8;
    --egr-muted: rgba(245, 241, 232, 0.55);
    --egr-font-display: "Cormorant Garamond", Georgia, serif;
    --egr-font-body: "Outfit", system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--egr-font-body);
    background: var(--egr-bg);
    color: var(--egr-cream);
    font-weight: 300;
    letter-spacing: 0.02em;
}

.font-display {
    font-family: var(--egr-font-display);
}

.letter-space {
    letter-spacing: 0.22em;
}

.text-gold {
    color: var(--egr-gold) !important;
}

.text-muted-soft {
    color: var(--egr-muted) !important;
}

.link-light {
    color: var(--egr-cream);
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.link-light:hover {
    color: var(--egr-gold);
    text-decoration: none;
    border-bottom-color: var(--egr-gold);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(13, 13, 13, 0.92), transparent);
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
    background: rgba(13, 13, 13, 0.96);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.site-header .navbar-brand {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--egr-cream) !important;
}

.site-header .nav-link {
    color: var(--egr-muted) !important;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 0.5rem 0.65rem !important;
    transition: color 0.2s;
}

.site-header .nav-link:hover {
    color: var(--egr-cream) !important;
}

@media (min-width: 992px) {
    .nav-spacing .nav-item .nav-link {
        padding-left: 0.35rem !important;
        padding-right: 0.35rem !important;
    }
}

.btn-gold {
    background: var(--egr-gold);
    color: #1a1a1a !important;
    border: none;
    font-weight: 600;
    letter-spacing: 0.12em;
    border-radius: 0;
    transition: background 0.2s, transform 0.2s;
}

.btn-gold:hover {
    background: #d4b978;
    color: #1a1a1a !important;
    transform: translateY(-1px);
}

.btn-outline-gold {
    border: 1px solid var(--egr-gold);
    color: var(--egr-gold) !important;
    background: transparent;
    border-radius: 0;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.72rem;
    transition: background 0.2s, color 0.2s;
}

.btn-outline-gold:hover {
    background: var(--egr-gold);
    color: #1a1a1a !important;
}

.site-main {
    padding-top: 0;
}

/* Full-screen hero: fills phone/tablet/desktop (uses dynamic viewport on capable browsers) */
.hero-video-wrap {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

/* Fills hero area edge-to-edge on any aspect ratio (object-fit: cover) */
.hero-video-wrap video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(13, 13, 13, 0.35) 0%,
        rgba(13, 13, 13, 0.5) 45%,
        rgba(13, 13, 13, 0.85) 100%
    );
}

.hero-video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 6rem 1.5rem 5rem;
    max-width: 920px;
    margin: 0 auto;
}

.hero-kicker {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--egr-gold);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-family: var(--egr-font-display);
    font-size: clamp(2rem, 5vw, 3.35rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--egr-muted);
    max-width: 560px;
    margin: 0 auto 2rem;
    font-weight: 300;
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--egr-muted);
    animation: egr-float 2.8s ease-in-out infinite;
}

@keyframes egr-float {
    0%, 100% { opacity: 0.5; transform: translate(-50%, 0); }
    50% { opacity: 1; transform: translate(-50%, 6px); }
}

.section-dark {
    background: var(--egr-bg);
    padding: 4.5rem 0;
}

.section-soft {
    background: var(--egr-bg-soft);
    padding: 4.5rem 0;
}

.section-title {
    font-family: var(--egr-font-display);
    font-size: 2.25rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.highlight-card {
    display: block;
    background: linear-gradient(145deg, #1a1814 0%, #0f0f0f 100%);
    border: 1px solid rgba(201, 169, 98, 0.12);
    padding: 2rem 1.75rem;
    height: 100%;
    text-decoration: none !important;
    color: inherit !important;
    transition: border-color 0.25s, transform 0.25s;
}

.highlight-card:hover {
    border-color: rgba(201, 169, 98, 0.45);
    transform: translateY(-4px);
    color: inherit !important;
}

.highlight-card .hc-title {
    font-family: var(--egr-font-display);
    font-size: 1.35rem;
    color: var(--egr-cream);
    margin-bottom: 0.5rem;
}

.highlight-card .hc-sub {
    font-size: 0.9rem;
    color: var(--egr-muted);
    margin-bottom: 0;
}

.highlight-thumb {
    height: 140px;
    margin: -2rem -1.75rem 1.25rem;
    background-size: cover;
    background-position: center;
    background-color: #222;
}

.feature-panel {
    padding: 2.5rem 2rem;
    border: 1px solid rgba(201, 169, 98, 0.15);
    background: rgba(255, 255, 255, 0.02);
    height: 100%;
}

.gallery-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

@media (max-width: 991px) {
    .gallery-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-strip .g-cell {
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
}

.gallery-strip .g-cell::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    transition: background 0.3s;
}

.gallery-strip .g-cell:hover::after {
    background: rgba(0, 0, 0, 0.45);
}

.site-footer {
    background: #080808;
    color: var(--egr-cream);
}

.site-footer .footer-top {
    border-top: 1px solid rgba(201, 169, 98, 0.12);
}

.page-carousel-wrap {
    background: #080808;
    border-bottom: 1px solid rgba(201, 169, 98, 0.12);
}

.page-carousel {
    max-width: 100%;
}

.page-carousel-frame {
    position: relative;
    min-height: 220px;
    max-height: min(58vh, 520px);
    background: #050505;
}

.page-carousel-img {
    width: 100%;
    height: min(58vh, 520px);
    min-height: 220px;
    object-fit: cover;
    display: block;
}

.page-carousel-indicators li {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(201, 169, 98, 0.35);
    border: none;
}

.page-carousel-indicators .active {
    background-color: var(--egr-gold);
}

.page-carousel-control {
    width: 8%;
    min-width: 2.5rem;
    opacity: 0.85;
}

.page-carousel-control .carousel-control-prev-icon,
.page-carousel-control .carousel-control-next-icon {
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.8));
}

.page-hero {
    padding: 8rem 0 3rem;
    background: linear-gradient(180deg, #121212 0%, var(--egr-bg) 100%);
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.page-hero h1 {
    font-family: var(--egr-font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
}

.page-content {
    padding: 3rem 0 5rem;
}

.page-content p {
    color: var(--egr-muted);
    line-height: 1.75;
}

.page-content .page-section-title {
    font-family: var(--egr-font-body);
    font-weight: 500;
    letter-spacing: 0.14em;
}

.page-content .page-feature-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--egr-muted);
    line-height: 1.65;
}

.page-content .page-feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 0.35rem;
    height: 1px;
    background: var(--egr-gold-dim);
}

.page-content .page-price {
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.offer-card {
    background: rgba(20, 20, 20, 0.85);
    border: 1px solid rgba(201, 169, 98, 0.15);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.offer-card:hover {
    border-color: rgba(201, 169, 98, 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.offer-card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #0a0a0a;
}

.offer-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.offer-card-img--placeholder {
    background: linear-gradient(135deg, #2a2419, #12100d);
}

.offer-card-body {
    padding: 1.35rem 1.5rem 1.5rem;
}

.offer-card-title {
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.25;
}

.offer-card-desc {
    font-size: 0.95rem;
    line-height: 1.7;
}
