/*
  Diamond Dream · Mentor Tiến Hoàng
  Black + metallic gold luxury (matched to brand banner)
*/

/*------------------------------------------------
  1. DESIGN TOKENS
------------------------------------------------*/
body {
    --heading-font: 'Cormorant Garamond', Georgia, serif;
    --display-font: 'Oswald', 'Arial Narrow', sans-serif;
    --body-font: 'Manrope', system-ui, sans-serif;
    --heading-font-weight: 500;
    --heading-color: #F7F1E4;
    --heading-line-height: 1.15;

    --swiper-theme-color: var(--accent);

    /* Pure black + gold (from brand screenshot) */
    --bg-deep: #0A0A0A;
    --bg-deep-2: #111111;
    --bg-card: #161616;
    --bg-soft: #1C1C1C;
    --accent: #CFA540;
    --accent-hover: #E2BD8D;
    --accent-bright: #F0D78C;
    --accent-soft: #8B7355;
    --line: rgba(207, 165, 64, 0.28);
    --text-muted: #A8A29A;
    --text-body: #D4D0C8;
    --cream: #F7F1E4;

    --background-color: var(--bg-deep);

    --secondary-font: 'Cormorant Garamond', Georgia, serif;

    --bs-body-font-family: var(--body-font);
    --bs-body-font-size: 1.05rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.7;
    --bs-body-color: var(--text-body);
    --bs-body-color-rgb: 212, 208, 200;

    --bs-primary: #CFA540;
    --bs-primary-dark: 180, 140, 40;
    --bs-secondary: #1C1C1C;
    --bs-black: #000000;
    --bs-light: #F7F1E4;
    --bs-dark: #F7F1E4;
    --bs-gray: #8A857C;
    --bs-gray-dark: #5A564E;

    --bs-primary-rgb: 207, 165, 64;
    --bs-secondary-rgb: 28, 28, 28;
    --bs-black-rgb: 0, 0, 0;
    --bs-light-rgb: 247, 241, 228;
    --bs-dark-rgb: 247, 241, 228;

    --bs-link-color: var(--cream);
    --bs-link-color-rgb: 247, 241, 228;
    --bs-link-decoration: none;
    --bs-link-hover-color: var(--accent);
    --bs-link-hover-color-rgb: 207, 165, 64;

    --bs-border-color: var(--line);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-color);
    color: var(--text-body);
    overflow-x: hidden;
}

::selection {
    background: rgba(207, 165, 64, 0.4);
    color: #fff;
}

/*------------------------------------------------
  2. TYPOGRAPHY
------------------------------------------------*/
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6,
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: var(--heading-font);
    font-weight: var(--heading-font-weight);
    color: var(--heading-color);
    line-height: var(--heading-line-height);
    text-transform: none;
}

.display-1,
.display-2,
.display-3 {
    font-family: var(--display-font);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    transition: all 0.3s ease-out;
    color: inherit;
}

.secondary-heading {
    color: var(--accent);
    font-family: var(--body-font);
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 0.72rem;
}

.secondary-font {
    font-family: var(--heading-font);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(3.5rem, 10vw, 7.5rem);
    letter-spacing: 0.01em;
    text-transform: none;
    line-height: 0.95;
}

.eyebrow {
    display: inline-block;
    font-family: var(--body-font);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.gold-line {
    display: block;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin: 1.25rem auto;
}

.gold-line-left {
    margin-left: 0;
    margin-right: 0;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.padding-large {
    padding-top: 8rem;
}

.padding-medium {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.padding-medium-2 {
    padding-top: 6rem;
}

@media only screen and (max-width: 768px) {
    .padding-large {
        padding-top: 4rem;
    }

    .padding-medium {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .padding-medium-2 {
        padding-top: 3.5rem;
    }

    body {
        --bs-body-font-size: 1rem;
        --bs-body-line-height: 1.65;
    }
}

/*------------------------------------------------
  3. BOOTSTRAP OVERRIDES
------------------------------------------------*/
.dropdown-menu {
    --bs-dropdown-border-radius: 0;
    --bs-dropdown-border-width: 0;
}

.dropdown-item {
    --bs-dropdown-item-padding-y: 0.25rem;
    --bs-dropdown-item-padding-x: 1rem;
    --bs-dropdown-link-color: var(--bs-black);
    --bs-dropdown-item-border-radius: 0;
}

.list-group-item {
    --bs-list-group-item-padding-x: 0;
    --bs-list-group-border-width: 0;
}

.btn {
    --bs-btn-border-radius: 0;
    font-family: var(--body-font);
}

.btn-primary {
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    font-size: 0.78rem;
    transition: 0.3s ease;
    padding: 0.95rem 1.75rem;
    --bs-btn-color: #0A0A0A;
    --bs-btn-bg: var(--accent);
    --bs-btn-border-color: var(--accent);
    --bs-btn-hover-color: #0A0A0A;
    --bs-btn-hover-bg: var(--accent-hover);
    --bs-btn-hover-border-color: var(--accent-hover);
    --bs-btn-focus-shadow-rgb: 207, 165, 64;
    --bs-btn-active-color: #0A0A0A;
    --bs-btn-active-bg: #B8942F;
    --bs-btn-active-border-color: #B8942F;
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: #0A0A0A;
    --bs-btn-disabled-bg: var(--accent);
    --bs-btn-disabled-border-color: var(--accent);
    background-image: linear-gradient(180deg, #E2BD8D 0%, #CFA540 45%, #A88428 100%);
    border: none;
    box-shadow: 0 4px 20px rgba(207, 165, 64, 0.25);
}

.btn-primary:hover {
    background-image: linear-gradient(180deg, #F0D78C 0%, #D4AF37 45%, #CFA540 100%);
    filter: brightness(1.05);
}

.btn-outline-light,
.btn-outline-primary {
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    font-size: 0.78rem;
    padding: 0.95rem 1.75rem;
    transition: 0.3s ease;
    --bs-btn-color: var(--cream);
    --bs-btn-border-color: rgba(207, 165, 64, 0.55);
    --bs-btn-hover-color: #0A0A0A;
    --bs-btn-hover-bg: var(--accent);
    --bs-btn-hover-border-color: var(--accent);
    --bs-btn-active-color: #0A0A0A;
    --bs-btn-active-bg: var(--accent);
    --bs-btn-active-border-color: var(--accent);
}

.btn-ghost-gold {
    display: inline-block;
    border: 1px solid var(--accent);
    color: var(--accent);
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    font-size: 0.78rem;
    padding: 0.95rem 1.75rem;
    transition: 0.3s ease;
}

.btn-ghost-gold:hover {
    background: var(--accent);
    color: #0A0A0A;
}

.form-control {
    border-radius: 0;
    border: 1px solid rgba(207, 165, 64, 0.28);
    color: var(--cream);
    background: rgba(0, 0, 0, 0.45);
}

.form-control::placeholder {
    color: rgba(168, 162, 154, 0.7);
}

.form-control:focus {
    border-color: var(--accent);
    background: rgba(0, 0, 0, 0.65);
    color: var(--cream);
    box-shadow: 0 0 0 0.2rem rgba(207, 165, 64, 0.15);
}

.text-primary {
    color: var(--accent) !important;
}

.bg-secondary {
    background-color: var(--bg-soft) !important;
}

.bg-white {
    background-color: var(--bg-card) !important;
    color: var(--text-body);
}

.border-secondary {
    border-color: var(--line) !important;
}

.border-primary {
    border-color: rgba(207, 165, 64, 0.35) !important;
}

/*------------------------------------------------
  4. HEADER
------------------------------------------------*/
#header.site-header {
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent !important;
    padding-top: 0.85rem !important;
    padding-bottom: 0.85rem !important;
    transition: all 0.35s ease;
    z-index: 1030;
}

#header.site-header > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
}

#header.site-header.is-scrolled {
    background: rgba(10, 10, 10, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(207, 165, 64, 0.2) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
}

#header .navbar-brand {
    margin: 0;
    padding: 0;
    gap: 0.75rem;
}

#header .site-logo {
    height: 48px;
    width: 48px;
    object-fit: cover;
    object-position: 50% 12%;
    border-radius: 50%;
    border: 2px solid var(--accent);
    background: #0A0A0A;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.4), 0 0 16px rgba(207, 165, 64, 0.35);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

#header .site-logo:hover {
    border-color: var(--accent-hover);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.4), 0 0 22px rgba(226, 189, 141, 0.5);
    transform: scale(1.04);
}

#header .brand-lockup {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    margin-left: 0;
}

#header .brand-text {
    font-family: var(--display-font);
    font-size: 1.05rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-bright);
    font-weight: 600;
    white-space: nowrap;
    background: linear-gradient(180deg, #F0D78C 0%, #CFA540 55%, #A88428 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#header .brand-sub {
    font-family: var(--body-font);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(247, 241, 228, 0.75);
    font-weight: 600;
    margin-top: 0.15rem;
    white-space: nowrap;
}

#header .nav-desktop {
    display: none;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0 1rem;
    flex-wrap: nowrap;
}

#header .nav-desktop .nav-link {
    font-family: var(--body-font);
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(247, 241, 228, 0.85);
    padding: 0.45rem 0.75rem;
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.2s ease;
    white-space: nowrap;
}

#header .nav-desktop .nav-link:hover,
#header .nav-desktop .nav-link.active {
    color: var(--accent-bright);
    background: transparent;
}

#header .btn-header-cta {
    display: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 0.7rem 1.35rem;
    border-radius: 0;
    white-space: nowrap;
}

#header .navbar-toggler {
    padding: 0.35rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

#header .offcanvas {
    border: none;
    max-width: 320px;
    background: #0A0A0A;
    color: var(--cream);
    border-left: 1px solid rgba(207, 165, 64, 0.2);
}

#header .offcanvas-header {
    border-bottom: 1px solid rgba(207, 165, 64, 0.2);
    padding-bottom: 1rem;
}

#header .offcanvas-title {
    font-size: 0.75rem;
    letter-spacing: 0.28em;
    color: var(--accent);
    margin: 0;
    padding: 0 !important;
    text-transform: uppercase;
}

#header .btn-close {
    filter: invert(1) brightness(1.2);
    opacity: 0.75;
}

#header .offcanvas-body .navbar-nav {
    gap: 0;
}

#header .offcanvas-body .nav-link {
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(245, 242, 235, 0.9);
    padding: 1rem 0 !important;
    border-color: rgba(207, 165, 64, 0.15) !important;
}

#header .offcanvas-body .nav-link a {
    color: inherit;
    text-decoration: none;
    display: block;
}

#header .offcanvas-body .nav-link:hover,
#header .offcanvas-body .nav-link.active {
    color: var(--accent);
}

#header .offcanvas-body .btn-offcanvas-cta {
    margin-top: 1.5rem;
    width: 100%;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 1rem;
    border-radius: 0;
}

@media (min-width: 992px) {
    #header .nav-desktop {
        display: flex;
    }

    #header .btn-header-cta {
        display: inline-block;
    }

    #header .navbar-toggler {
        display: none;
    }

    #header .site-logo {
        height: 52px;
        width: 52px;
    }

    #header .brand-text {
        font-size: 0.9rem;
    }
}

/*------------------------------------------------
  5. HERO / BILLBOARD — black gold luxury
------------------------------------------------*/
#billboard {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    padding-bottom: 3.5rem;
    overflow: hidden;
    background: #000;
}

#billboard .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 70% 60% at 85% 45%, rgba(207, 165, 64, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(207, 165, 64, 0.06) 0%, transparent 50%),
        #000;
}

#billboard .hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.75) 45%, rgba(0, 0, 0, 0.35) 100%);
    z-index: 1;
    pointer-events: none;
}

#billboard .container {
    position: relative;
    z-index: 2;
}

#billboard .hero-kicker {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--accent-bright);
    margin-bottom: 0.35rem;
    background: linear-gradient(180deg, #F0D78C, #CFA540);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#billboard .hero-title {
    font-family: var(--display-font);
    font-weight: 600;
    font-size: clamp(2.1rem, 5.8vw, 3.85rem);
    line-height: 1.02;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--accent-bright);
    margin-bottom: 0.2rem;
    background: linear-gradient(180deg, #F5E6B8 0%, #E2BD8D 30%, #CFA540 70%, #A88428 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#billboard .hero-title .line-white {
    display: block;
    font-size: 0.72em;
    letter-spacing: 0.08em;
    margin-top: 0.2em;
    background: linear-gradient(180deg, #FFFFFF 0%, #E8E0D0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#billboard .hero-title .italic {
    font-family: var(--heading-font);
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.01em;
    display: block;
    font-size: 1.05em;
    margin-top: 0.15em;
    -webkit-text-fill-color: unset;
    background: none;
    color: var(--accent);
}

#billboard .hero-sub {
    font-family: var(--body-font);
    font-size: clamp(0.92rem, 1.6vw, 1.05rem);
    color: rgba(247, 241, 228, 0.78);
    max-width: 34rem;
    margin: 1.15rem 0 1.5rem;
    line-height: 1.7;
}

#billboard .hero-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin: 0 0 1.75rem;
    padding: 0;
    list-style: none;
}

#billboard .hero-pillars li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 8.5rem;
}

#billboard .hero-pillars .pillar-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(207, 165, 64, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent-bright);
    background: radial-gradient(circle at 30% 30%, rgba(207, 165, 64, 0.2), transparent 70%);
    flex-shrink: 0;
}

#billboard .hero-pillars .pillar-label {
    font-family: var(--display-font);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream);
    line-height: 1.2;
}

#billboard .hero-pillars .pillar-sub {
    display: block;
    font-family: var(--body-font);
    font-size: 0.65rem;
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 0.1rem;
}

#billboard .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
}

#billboard .hero-visual {
    position: relative;
    text-align: center;
    margin-top: 2rem;
}

#billboard .hero-portrait {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    display: block;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.75));
}

#billboard .hero-quote-card {
    margin-top: 1.25rem;
    padding: 1rem 1.15rem;
    border-left: 2px solid var(--accent);
    background: linear-gradient(90deg, rgba(207, 165, 64, 0.1), transparent 80%);
    text-align: left;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

#billboard .hero-quote-card p {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 0.95rem;
    color: rgba(247, 241, 228, 0.9);
    margin-bottom: 0.5rem;
    line-height: 1.55;
}

#billboard .hero-quote-card cite {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--accent-bright);
    font-weight: 500;
}

#billboard .hero-quote {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(207, 165, 64, 0.22);
    max-width: 32rem;
}

#billboard .hero-quote p {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(247, 241, 228, 0.85);
    margin-bottom: 0.65rem;
    line-height: 1.55;
}

#billboard .hero-quote cite {
    font-family: var(--body-font);
    font-style: normal;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
}

@media (min-width: 992px) {
    #billboard .hero-visual {
        margin-top: 0;
    }

    #billboard .hero-portrait {
        max-width: 100%;
    }

    #billboard .hero-quote-card {
        position: absolute;
        right: 0;
        bottom: 8%;
        max-width: 280px;
        margin: 0;
        background: rgba(0, 0, 0, 0.55);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(207, 165, 64, 0.25);
        border-left: 2px solid var(--accent);
    }
}

/*------------------------------------------------
  6. STATS STRIP — DARK LUXURY BOX GRID
------------------------------------------------*/
#stats.stats-luxury {
    background: radial-gradient(circle at 50% 30%, #151817 0%, #080909 75%, #050606 100%);
    border-top: 1px solid rgba(207, 165, 64, 0.2);
    border-bottom: 1px solid rgba(207, 165, 64, 0.2);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

#stats.stats-luxury::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(207, 165, 64, 0.06), transparent 70%);
    pointer-events: none;
}

.stats-main-title {
    font-family: var(--display-font);
    font-size: clamp(1.25rem, 2.6vw, 1.9rem);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #F7F1E4;
    line-height: 1.35;
    margin: 0 auto;
    max-width: 900px;
}

.stat-card {
    background: linear-gradient(145deg, rgba(24, 28, 27, 0.85) 0%, rgba(10, 12, 12, 0.95) 100%);
    border: 1px solid rgba(207, 165, 64, 0.22);
    border-radius: 4px;
    padding: 2.2rem 1.2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 2px;
    background: linear-gradient(90deg, #F0D78C, rgba(207, 165, 64, 0.8), transparent);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(207, 165, 64, 0.5);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7), 0 0 20px rgba(207, 165, 64, 0.15);
}

.stat-card .stat-value {
    font-family: var(--display-font);
    font-size: clamp(2.2rem, 3.6vw, 3.2rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.stat-card .stat-label {
    font-family: var(--body-font);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(247, 241, 228, 0.75);
    margin: 0;
    line-height: 1.4;
}

.stats-sub-title {
    font-family: var(--display-font);
    font-size: clamp(1.1rem, 2.2vw, 1.65rem);
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #F7F1E4;
    line-height: 1.4;
    margin: 0 auto;
    max-width: 980px;
}

/*------------------------------------------------
  7. ABOUT + MENTOR
------------------------------------------------*/
#about,
#mentor {
    background: var(--bg-deep);
    position: relative;
}

/* Khối Mô hình kinh doanh Diamond Dream */
.diamond-model-card {
    background: radial-gradient(circle at 50% 15%, #181d1c 0%, #0d100f 65%, #060808 100%);
    border: 1px solid rgba(207, 165, 64, 0.28);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.65), inset 0 0 60px rgba(0, 0, 0, 0.4);
    border-radius: 6px;
    padding: 3.5rem 2rem;
    position: relative;
}

.model-main-title {
    font-family: var(--display-font);
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #F7F1E4;
}

.model-sub-title {
    font-family: var(--display-font);
    font-size: clamp(1rem, 1.9vw, 1.4rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-bright);
    line-height: 1.45;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.model-intro {
    color: #D4D0C8;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 820px;
}

.model-features-row {
    border-top: 1px solid rgba(207, 165, 64, 0.15);
    border-bottom: 1px solid rgba(207, 165, 64, 0.15);
    padding: 1.5rem 0;
}

.model-item {
    padding: 1rem 0.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.model-icon-wrap {
    color: var(--accent);
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.model-item:hover .model-icon-wrap {
    transform: translateY(-4px) scale(1.08);
    color: var(--accent-bright);
}

.model-item-title {
    font-family: var(--display-font);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #F7F1E4;
    line-height: 1.45;
    margin: 0;
}

.model-conclusion {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    color: var(--accent-bright);
    margin: 0;
    letter-spacing: 0.02em;
}

#about .about-frame,
#mentor .about-frame {
    background: var(--bg-card);
    border: 1px solid rgba(207, 165, 64, 0.15);
    padding: 0;
    overflow: hidden;
}

#about .about-portrait,
#mentor .about-portrait {
    width: 100%;
    height: 100%;
    min-height: 420px;
    aspect-ratio: 3 / 4;
    object-fit: contain;
    object-position: center top;
    display: block;
    background: #0A0A0A;
}

#about .about-copy,
#mentor .about-copy {
    padding: 2.5rem 1.75rem;
}

#about .about-name,
#mentor .about-name {
    font-family: var(--display-font);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 0.5rem;
    background: linear-gradient(180deg, #F0D78C 0%, #CFA540 70%, #A88428 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#about .about-copy p,
#mentor .about-copy p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

@media (min-width: 768px) {
    #about .about-copy,
    #mentor .about-copy {
        padding: 3.5rem 3rem;
    }
}

/*------------------------------------------------
  8. SUBSCRIBE / NEWSLETTER
------------------------------------------------*/
#subscribe {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(207, 165, 64, 0.12), transparent 55%),
        var(--bg-deep-2);
    padding: 5rem 0;
    border-top: 1px solid rgba(207, 165, 64, 0.1);
    border-bottom: 1px solid rgba(207, 165, 64, 0.1);
}

#subscribe h2 {
    font-family: var(--display-font);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

#subscribe .form-control {
    text-align: left;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    border-color: rgba(207, 165, 64, 0.25);
    color: var(--cream);
}

#subscribe .form-control:focus {
    border-color: var(--accent);
    color: var(--cream);
}

.subscribe-form-card {
    background: var(--bg-card);
    border: 1px solid rgba(207, 165, 64, 0.25);
    border-radius: 6px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.55);
}

.social-channel-buttons {
    margin-top: 1rem;
}

.btn-channel-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.35rem;
    border-radius: 4px;
    font-family: var(--display-font);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-channel-yt {
    background: #c00c0c;
    color: #FFFFFF !important;
    box-shadow: 0 6px 20px rgba(192, 12, 12, 0.35);
}

.btn-channel-yt:hover {
    background: #e01414;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(192, 12, 12, 0.55);
}

.btn-channel-fb {
    background: #1877F2;
    color: #FFFFFF !important;
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.35);
}

.btn-channel-fb:hover {
    background: #2D88FF;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.55);
}

/*------------------------------------------------
  9. SERVICES / WHAT NOW
------------------------------------------------*/
#whatnow {
    background: var(--bg-deep);
}

#whatnow .section-head {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 3rem;
}

#whatnow .section-head h2 {
    font-family: var(--display-font);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

#whatnow .journey-card {
    background: var(--bg-card);
    border: 1px solid rgba(207, 165, 64, 0.15);
    padding: 2rem 1.5rem;
    height: 100%;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

#whatnow .journey-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#whatnow .journey-card:hover {
    border-color: rgba(207, 165, 64, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

#whatnow .journey-card:hover::before {
    opacity: 1;
}

#whatnow .journey-num {
    font-family: var(--display-font);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}

#whatnow .journey-card h3 {
    font-family: var(--display-font);
    font-size: 1.25rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 0.85rem;
}

#whatnow .journey-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.98rem;
}

#whatnow .services-portrait {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: top center;
    border: 1px solid rgba(207, 165, 64, 0.2);
}

/*------------------------------------------------
  10. STORY
------------------------------------------------*/
#story {
    background:
        radial-gradient(ellipse at 80% 20%, rgba(207, 165, 64, 0.1), transparent 50%),
        var(--bg-deep-2);
    overflow: visible;
}

#story .story-panel {
    background: var(--bg-card);
    border: 1px solid rgba(207, 165, 64, 0.18);
    border-radius: 0;
    padding: 2rem 1.35rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

#story .story-title {
    font-family: var(--display-font);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--cream);
    line-height: 1.2;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

#story .story-body p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.15rem;
}

#story .story-quote {
    margin: 1.5rem 0;
    padding: 1.35rem 1.35rem 1.35rem 1.5rem;
    border-left: 2px solid var(--accent);
    background: rgba(0, 0, 0, 0.45);
    border-radius: 0;
}

#story .story-quote p {
    margin-bottom: 0.75rem;
    color: rgba(245, 242, 235, 0.9);
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 1.15rem;
}

#story .story-lessons-title {
    font-family: var(--display-font);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 0.25rem;
}

#story .story-lesson-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0;
    padding: 1.35rem 1.25rem;
    border: 1px solid rgba(207, 165, 64, 0.12);
    height: 100%;
}

#story .story-lesson-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-family: var(--body-font);
}

#story .story-lesson-heading {
    text-transform: none;
    font-size: 1.25rem;
    font-family: var(--heading-font);
    color: var(--cream);
    margin-bottom: 0.65rem;
    line-height: 1.35;
}

#story .story-lesson-card p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

#story .story-question {
    font-size: 1.2rem;
    font-weight: 400;
    font-family: var(--heading-font);
    font-style: italic;
    color: var(--cream);
    line-height: 1.55;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 768px) {
    #story .story-panel {
        padding: 3rem 2.5rem;
    }
}

@media screen and (min-width: 992px) {
    #story .story-panel {
        padding: 3.5rem 3rem;
    }
}

/*------------------------------------------------
  11. CÂU CHUYỆN THÀNH CÔNG (bài NPP)
------------------------------------------------*/
#posts {
    background: var(--bg-deep);
    overflow: visible;
}

#posts .posts-title {
    font-family: var(--display-font);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: clamp(1.9rem, 4.5vw, 2.85rem);
    background: linear-gradient(180deg, #F0D78C 0%, #CFA540 70%, #A88428 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#posts .posts-intro p {
    font-size: 1.02rem;
    line-height: 1.7;
}

/* Magazine Cover Cards Style (E-Friends Enagic inspirated) */
.mag-card {
    background: var(--bg-card);
    border: 1px solid rgba(207, 165, 64, 0.22);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mag-card:hover {
    transform: translateY(-6px);
    border-color: rgba(207, 165, 64, 0.6);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7), 0 0 25px rgba(207, 165, 64, 0.18);
}

.mag-cover-link {
    display: block;
    text-decoration: none;
}

.mag-cover-frame {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #000;
}

.mag-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
    display: block;
}

.mag-card:hover .mag-cover-img {
    transform: scale(1.06);
}

.mag-badge {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid var(--accent);
    color: var(--accent-bright);
    font-family: var(--display-font);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    padding: 0.25rem 0.65rem;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    z-index: 2;
    border-radius: 2px;
}

.mag-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.mag-card:hover .mag-overlay {
    opacity: 1;
}

.btn-read-mag {
    background: var(--accent);
    color: #0A0A0A;
    font-family: var(--display-font);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.65rem 1.35rem;
    border-radius: 2px;
    transform: translateY(12px);
    transition: transform 0.3s ease, background-color 0.2s ease;
}

.mag-card:hover .btn-read-mag {
    transform: translateY(0);
}

.btn-read-mag:hover {
    background: var(--accent-hover);
}

.mag-info {
    padding: 1.25rem 1.15rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.mag-author {
    font-family: var(--body-font);
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
}

.mag-title {
    font-family: var(--heading-font);
    font-size: clamp(1.02rem, 1.35vw, 1.25rem);
    font-weight: 500;
    line-height: 1.35;
    margin: 0;
}

.mag-title a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mag-title a:hover {
    color: var(--accent-bright);
}

.btn-link-gold {
    font-family: var(--body-font);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--accent);
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-link-gold:hover {
    color: var(--accent-bright);
    text-decoration: underline;
}

/*------------------------------------------------
  12. TESTIMONIAL
------------------------------------------------*/
#testimonial {
    background: var(--bg-deep-2);
    overflow: visible;
}

#testimonial .testimonial-panel {
    background: var(--bg-card);
    border: 1px solid rgba(207, 165, 64, 0.18);
    border-radius: 0;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

#testimonial .testimonial-heading {
    font-family: var(--display-font);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--cream);
    line-height: 1.2;
    font-size: clamp(1.6rem, 3.5vw, 2.3rem);
}

#testimonial .review-quote {
    color: rgba(245, 242, 235, 0.88);
    font-size: 1.2rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    font-family: var(--heading-font);
    font-style: italic;
}

#testimonial .review-name {
    font-size: 1rem;
    font-family: var(--display-font);
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.3;
}

#testimonial .review-role {
    margin-top: 0.35rem;
}

#testimonial .testimonial-portrait {
    width: 100%;
    max-height: none;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    display: block;
    border: 1px solid rgba(207, 165, 64, 0.2);
    background: #0A0A0A;
}

#testimonial .swiper-pagination-bullet {
    background: var(--accent);
    opacity: 0.3;
}

#testimonial .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent);
}

@media screen and (min-width: 992px) {
    #testimonial .testimonial-panel {
        padding: 2.5rem 2.25rem;
    }
}

@media screen and (max-width: 767px) {
    #testimonial .testimonial-panel {
        padding: 1.35rem 1.15rem;
    }

    #testimonial .review-quote {
        font-size: 1.05rem;
    }
}

/* Video Testimonials từ Nhà phân phối */
.video-testimonials-wrap {
    border-top: 1px solid rgba(207, 165, 64, 0.18);
}

.video-sec-title {
    font-family: var(--display-font);
    font-size: clamp(1.4rem, 2.8vw, 2.1rem);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #F7F1E4;
}

.video-card {
    background: var(--bg-card);
    border: 1px solid rgba(207, 165, 64, 0.2);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: rgba(207, 165, 64, 0.6);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(207, 165, 64, 0.15);
}

.video-thumb-wrap {
    position: relative;
    overflow: hidden;
    background: #000;
}

.video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-poster {
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    background: rgba(207, 165, 64, 0.92);
    color: #0A0A0A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(207, 165, 64, 0.6);
    transition: all 0.3s ease;
    text-decoration: none;
    z-index: 2;
    padding-left: 3px;
}

.video-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.12);
    background: #F0D78C;
    box-shadow: 0 0 35px rgba(240, 215, 140, 0.8);
}

.video-distributor-name {
    font-family: var(--display-font);
    font-size: 1.15rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cream);
}

.video-role {
    font-family: var(--body-font);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}

.video-summary {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(247, 241, 228, 0.85);
    line-height: 1.45;
}

.btn-watch-video {
    font-family: var(--body-font);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

.btn-watch-video:hover {
    color: var(--accent-bright);
    text-decoration: underline;
}

/*------------------------------------------------
  13. PRICING
------------------------------------------------*/
#price {
    background: var(--bg-deep);
}

#price .section-head h2 {
    font-family: var(--display-font);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.price-padding {
    padding-top: 5rem;
    padding-bottom: 3rem;
}

.plan-post {
    background: var(--bg-card);
    border: 1px solid rgba(207, 165, 64, 0.18) !important;
    height: 100%;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.plan-post:hover {
    border-color: rgba(207, 165, 64, 0.45) !important;
    transform: translateY(-4px);
}

.plan-post.featured {
    background:
        linear-gradient(180deg, rgba(207, 165, 64, 0.12), transparent 40%),
        var(--bg-soft);
    border-color: rgba(207, 165, 64, 0.45) !important;
    position: relative;
}

.plan-post .plan-tag {
    font-family: var(--body-font);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
}

.plan-post h3.display-2 {
    font-family: var(--display-font);
    color: var(--accent);
    font-size: 3rem;
}

.plan-post .price-option p {
    color: var(--text-muted);
    margin-bottom: 0.65rem;
}

.plan-post .btn.bg-light,
.plan-post a.bg-light {
    background: transparent !important;
    color: var(--cream) !important;
    border: 1px solid rgba(245, 242, 235, 0.4) !important;
}

.plan-post .btn.bg-light:hover,
.plan-post a.bg-light:hover {
    background: var(--cream) !important;
    color: #0A0A0A !important;
}

@media screen and (max-width: 999px) {
    .price-padding {
        padding-top: 3.5rem;
        padding-bottom: 1.5rem;
    }

    .plan-post {
        padding: 1.75rem !important;
    }

    .plan-post .mx-5 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }
}

/*------------------------------------------------
  14. CONTACT
------------------------------------------------*/
#contact {
    background: var(--bg-deep-2);
}

#contact .contact-bg {
    background:
        radial-gradient(ellipse 55% 70% at 18% 70%, rgba(207, 165, 64, 0.12) 0%, transparent 55%),
        #000;
    min-height: 720px;
    position: relative;
    overflow: hidden;
}

#contact .contact-mentor {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    width: min(52%, 560px);
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
    pointer-events: none;
    filter: brightness(0.88) saturate(1.02);
    opacity: 1;
    mask-image: linear-gradient(90deg, #000 65%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, #000 65%, transparent 100%);
}

#contact .contact-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, transparent 35%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0.88) 100%);
    z-index: 0;
    pointer-events: none;
}

#contact .contact-bg .container {
    position: relative;
    z-index: 1;
}

#contact .contact-card {
    background: rgba(22, 22, 22, 0.92) !important;
    border: 1px solid rgba(207, 165, 64, 0.28);
    padding: 2.5rem !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 991.98px) {
    #contact .contact-mentor {
        width: 65%;
        height: 52%;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0.35;
        object-position: center top;
    }

    #contact .contact-bg::before {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.92) 55%);
    }
}

#contact .contact-card h2 {
    font-family: var(--display-font);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

#contact .contact-card h2 .fst-italic {
    font-family: var(--heading-font);
    text-transform: none;
    letter-spacing: 0;
    color: var(--accent);
}

#contact .form-control {
    text-align: left;
    padding-left: 1.15rem;
}

/*------------------------------------------------
  15. INSTAGRAM
------------------------------------------------*/
.padding-insta {
    padding-top: 0;
    padding-bottom: 0;
    background: var(--bg-deep);
}

#insta .instagram-item {
    flex: 1 1 25%;
    max-width: 25%;
    overflow: hidden;
    min-width: 0;
}

@media (max-width: 767.98px) {
    #insta .instagram-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.instagram-item:hover:before,
.instagram-item:hover .icon-overlay {
    opacity: 1;
    cursor: pointer;
}

.icon-overlay {
    z-index: 1;
    cursor: pointer;
    opacity: 0;
    transition: 0.5s ease;
    color: var(--cream);
}

#insta img {
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: brightness(0.75) saturate(0.9);
}

#insta .instagram-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.55) saturate(1);
}

.gallery-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top !important;
    display: block;
}

@media screen and (max-width: 767px) {
    #insta .d-flex {
        flex-wrap: wrap;
    }

    #insta .instagram-item {
        flex: 0 0 50%;
    }

    #insta img.p-3 {
        padding: 0 !important;
    }
}

/*------------------------------------------------
  16. FOOTER
------------------------------------------------*/
#footer {
    background: #000000;
    border-top: 1px solid rgba(207, 165, 64, 0.12);
}

#footer.padding-medium {
    padding-top: 4rem;
    padding-bottom: 2.5rem;
}

#footer .nav-link {
    font-family: var(--body-font);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(245, 242, 235, 0.65);
}

#footer .nav-link:hover,
#footer .nav-link.active {
    color: var(--accent);
}

.footer-portrait {
    width: 110px;
    height: 110px;
    max-width: 120px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center center;
    border-radius: 50%;
    border: 2px solid var(--accent);
    background: #0A0A0A;
    box-shadow: 0 0 25px rgba(207, 165, 64, 0.4);
    margin: 0 auto;
    display: block;
}

.footer-brand {
    font-family: var(--display-font);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-bright);
    font-size: 1rem;
    margin-top: 1rem;
    background: linear-gradient(180deg, #F0D78C, #CFA540);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

svg.color {
    color: rgba(245, 242, 235, 0.55);
    transition: 0.3s ease;
}

svg.color:hover {
    color: var(--accent);
}

.footer-bottom {
    background: #050505;
    border-top: 1px solid rgba(207, 165, 64, 0.1) !important;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--accent);
}

a.nav-link:hover {
    color: var(--accent);
}

/*------------------------------------------------
  17. MISC / LEGACY
------------------------------------------------*/
a.border-animation {
    color: var(--cream);
    display: inline-table;
    font-family: var(--body-font);
    font-style: normal;
    font-weight: 600;
    font-size: 0.78rem;
    line-height: 2.2rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

a.border-animation:after {
    content: "";
    display: block;
    border-bottom: 1px solid var(--accent);
    width: 100%;
    transition: width 0.25s ease-out;
}

a.border-animation:hover {
    color: var(--accent);
}

a.border-animation:hover:after {
    width: 65%;
}

.hero-portrait {
    width: 100%;
    max-height: 85vh;
    object-fit: contain;
    object-position: center bottom;
}

.site-logo {
    height: 48px;
    width: 48px;
    object-fit: cover;
    object-position: 50% 12%;
    border-radius: 50%;
    border: 1px solid rgba(207, 165, 64, 0.45);
    background: #0A0A0A;
}

.menu-portrait {
    max-height: 320px;
    width: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Manifesto section */
#manifesto {
    background: var(--bg-deep);
    position: relative;
    overflow: hidden;
}

#manifesto .manifesto-inner {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

#manifesto h2 {
    font-family: var(--display-font);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    margin-bottom: 1.5rem;
}

#manifesto p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.85;
}

#manifesto p strong {
    color: var(--cream);
    font-weight: 600;
}

#manifesto .manifesto-em {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    color: var(--cream);
    line-height: 1.45;
    margin: 2rem 0;
}

/* Choose journey label */
.journey-label {
    text-align: center;
    margin-bottom: 2.5rem;
}

.journey-label h2 {
    font-family: var(--display-font);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--cream);
}

/* Breadcrumb / pagination leftovers */
.breadcrumb {
    --bs-breadcrumb-item-padding-x: 1em;
}

.pagination {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 1rem;
    --bs-pagination-color: var(--bs-link-color);
    --bs-pagination-bg: transparent;
    --bs-pagination-border-width: 0;
    display: flex;
    padding-left: 0;
    list-style: none;
}

.table {
    --bs-table-bg: var(--bs-secondary);
    border-color: var(--bs-gray);
}

div#cboxOverlay {
    opacity: 0.85 !important;
}

/* Mobile container spacing */
@media screen and (max-width: 767px) {
    #billboard .container,
    #about .container,
    #subscribe .container,
    #whatnow .container,
    #posts .container,
    #manifesto .container {
        padding-left: 1.15rem;
        padding-right: 1.15rem;
    }

    #contact .padding-large {
        padding-top: 3rem;
    }

    #contact .contact-card {
        padding: 1.5rem !important;
    }

    #footer.padding-medium {
        padding-top: 2.5rem;
        padding-bottom: 2rem;
    }
}
