/* Premium corporate UI — The Pride Group */

/* ─── Cinematic hero ─── */
.hero-cinematic {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg);
}

.hero-cinematic__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-cinematic__media video,
.hero-cinematic__media .hero-cinematic__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-cinematic__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(6, 8, 15, 0.92) 0%, rgba(6, 8, 15, 0.55) 45%, rgba(6, 8, 15, 0.75) 100%);
    z-index: 1;
}

.hero-cinematic__content {
    position: relative;
    z-index: 2;
    padding: calc(var(--nav-h) + 4rem) 1.5rem 4rem;
    max-width: 720px;
}

.hero-cinematic__eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin: 0 0 0.75rem;
}

.hero-cinematic__brands {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin: 0 0 1rem;
    min-height: 1.15em;
}

.hero-cinematic__brands a {
    color: inherit;
    text-decoration: none;
}

.hero-cinematic__brands a:hover {
    color: var(--gold-light);
}

.hero-cinematic__brands .typewrite,
.hero-cinematic__brands .wrap {
    color: var(--gold-light);
    border-right: 3px solid var(--gold);
    padding-right: 6px;
    min-width: 12ch;
    display: inline-block;
}

.hero-cinematic__tagline {
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    font-weight: 500;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 1rem;
    max-width: 36rem;
    transition: opacity 0.4s var(--ease);
}

.hero-cinematic__tagline .tagline-word {
    color: var(--gold-light);
}

.hero-cinematic__sub {
    font-size: 1.15rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
    max-width: 32rem;
}

.hero-cinematic__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tag-badge {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.45rem 0.85rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(212, 168, 83, 0.35);
    color: var(--gold-light);
    background: rgba(212, 168, 83, 0.08);
}

/* ─── Values wheel (rotating flower + petals) ─── */
.values-wheel-section {
    padding: clamp(4rem, 8vw, 6rem) 1.5rem;
    background: radial-gradient(ellipse at center, #1a2234 0%, var(--bg) 70%);
    overflow: hidden;
}

.values-wheel-lead {
    color: var(--text-dim) !important;
    margin-bottom: 2.5rem !important;
}

.values-wheel-stage {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
    aspect-ratio: 1;
}

.values-wheel-orbit {
    position: absolute;
    inset: 0;
    animation: wheelSpin 90s linear infinite;
    transform-origin: center center;
}

.values-wheel-flower {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(72%, 420px);
    height: auto;
    transform: translate(-50%, -50%);
    pointer-events: none;
    filter: drop-shadow(0 20px 50px rgba(212, 168, 83, 0.2));
}

.value-petal {
    position: absolute;
    width: 118px;
    text-align: center;
    color: #fff;
    transform-origin: center center;
}

.value-petal__title {
    display: block;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.25rem;
}

.value-petal__text {
    margin: 0;
    font-size: 0.62rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.75);
}

.value-petal--1 { left: 50%; top: 2%; transform: translateX(-50%); width: 130px; }
.value-petal--2 { right: 4%; top: 18%; width: 110px; }
.value-petal--3 { right: 0; top: 50%; transform: translateY(-50%); width: 110px; }
.value-petal--4 { right: 8%; bottom: 12%; width: 110px; }
.value-petal--5 { left: 8%; top: 18%; width: 110px; }
.value-petal--6 { left: 0; top: 50%; transform: translateY(-50%); width: 110px; }
.value-petal--7 { left: 12%; bottom: 12%; width: 110px; }

.values-wheel-core-label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    z-index: 2;
}

@keyframes wheelSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 640px) {
    .values-wheel-stage { max-width: 340px; }
    .value-petal { width: 88px; }
    .value-petal__title { font-size: 0.6rem; }
    .value-petal__text { font-size: 0.55rem; }
}

/* ─── Leadership ─── */
.leadership-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.leadership-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.leadership-tabs .nav-link {
    border-radius: var(--radius-pill);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.55rem 1.25rem;
    border: 1px solid var(--border);
}

.leadership-tabs .nav-link.active {
    background: var(--bg);
    color: #fff;
    border-color: var(--bg);
}

.leader-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.leader-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.leader-card__photo {
    aspect-ratio: 4/5;
    object-fit: cover;
    width: 100%;
    background: var(--bg-soft);
}

.leader-card__body {
    padding: 1.5rem;
}

.leader-card__role {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.35rem;
}

.leader-card__name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin: 0 0 0.75rem;
}

.leader-card__bio {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.65;
}

.leader-card__meta h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text);
    margin: 0.75rem 0 0.35rem;
}

.leader-card__meta ul {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ─── Governance / policies ─── */
.governance-nav {
    position: sticky;
    top: var(--nav-h);
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
    margin-bottom: 2rem;
}

.governance-nav .nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.25rem;
    padding-bottom: 0.25rem;
}

.governance-nav .nav-link {
    white-space: nowrap;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: var(--radius-pill);
    padding: 0.4rem 0.9rem;
}

.governance-nav .nav-link.active,
.governance-nav .nav-link:hover {
    background: var(--bg);
    color: #fff;
}

.policy-block {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    scroll-margin-top: calc(var(--nav-h) + 4rem);
}

.policy-block h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin: 0 0 1rem;
}

.policy-block h3 {
    font-size: 1.05rem;
    margin: 1.25rem 0 0.5rem;
}

.policy-block p,
.policy-block li {
    color: var(--text-muted);
    line-height: 1.75;
}

.whistleblower-box {
    background: linear-gradient(135deg, var(--bg) 0%, #1a2234 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-top: 1rem;
}

.whistleblower-box a {
    color: var(--gold-light);
}

/* ─── Venture timeline (premium) ─── */
.venture-hero {
    padding: clamp(3.5rem, 7vw, 5rem) 0;
    background: linear-gradient(135deg, #0e1219 0%, #1a2230 50%, #121820 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.venture-hero__inner {
    max-width: 720px;
}

.venture-hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin: 0 0 0.75rem;
}

.venture-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0 0 1rem;
}

.venture-hero__accent {
    color: var(--gold-light);
}

.venture-hero__lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dim);
    margin: 0 0 2rem;
}

.venture-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.venture-hero__stats li {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.venture-hero__stats strong {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gold-light);
    line-height: 1;
}

.venture-hero__stats span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.venture-timeline {
    padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(5rem, 9vw, 7rem);
}

.venture-timeline__shell {
    display: grid;
    grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}

.venture-timeline__nav {
    position: sticky;
    top: calc(var(--nav-h) + 1.25rem);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.5rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.venture-timeline__nav-link {
    display: block;
    padding: 0.65rem 1rem;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: var(--radius);
    transition: background 0.2s, color 0.2s;
}

.venture-timeline__nav-link:hover,
.venture-timeline__nav-link.is-active {
    background: rgba(212, 168, 83, 0.12);
    color: var(--bg);
}

.venture-timeline__nav-link.is-active {
    box-shadow: inset 3px 0 0 var(--gold);
}

.venture-timeline__feed {
    display: flex;
    flex-direction: column;
    gap: clamp(3rem, 6vw, 4.5rem);
}

.venture-year-block {
    scroll-margin-top: calc(var(--nav-h) + 1.5rem);
}

.venture-year-block__header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.venture-year-block__year {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--bg);
}

.venture-year-block__count {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.venture-year-block__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.venture-card {
    display: flex;
    gap: 1.15rem;
    padding: 1.35rem 1.4rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}

.venture-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 168, 83, 0.35);
}

.venture-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.2), rgba(123, 61, 143, 0.12));
    color: var(--bg);
    font-size: 1.15rem;
}

.venture-card__body {
    min-width: 0;
}

.venture-card__tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.venture-card__title {
    font-family: var(--font-display);
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 0.6rem;
    color: var(--bg);
}

.venture-card__text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0 0 1rem;
}

.venture-card__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.venture-card__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--bg);
    text-decoration: none;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 999px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.venture-card__chip:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #0e1219;
}

.venture-card__chip i {
    font-size: 0.65rem;
}

@media (max-width: 991px) {
    .venture-timeline__shell {
        grid-template-columns: 1fr;
    }

    .venture-timeline__nav {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .venture-timeline__nav-link.is-active {
        box-shadow: inset 0 -3px 0 var(--gold);
    }

    .venture-year-block__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .venture-card {
        flex-direction: column;
    }
}

/* Legacy simple timeline (if used elsewhere) */
.timeline-page {
    padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
    background: var(--bg-soft);
}

.timeline-track {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 2rem;
}

.timeline-event__card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--border);
    margin-top: 0.5rem;
    box-shadow: var(--shadow-sm);
}

/* ─── Vertical detail ─── */
.vertical-nav-pills {
    position: sticky;
    top: calc(var(--nav-h) + 1rem);
}

.vertical-nav-pills .nav-link {
    text-align: left;
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--text-muted);
    padding: 0.65rem 1rem;
    margin-bottom: 0.25rem;
}

.vertical-nav-pills .nav-link.active {
    background: var(--bg);
    color: #fff;
}

.vertical-panel {
    display: none;
    animation: fadeUp 0.5s var(--ease);
}

.vertical-panel.is-active {
    display: block;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.vertical-stat-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.vertical-stat {
    background: var(--bg-soft);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
}

.vertical-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--bg);
    line-height: 1.1;
}

.vertical-stat span {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.vertical-panel .section-title {
    margin-bottom: 1.25rem;
}

.vertical-detail {
    margin-bottom: 1.35rem;
}

.vertical-detail h3 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold, #b8922e);
    margin: 0 0 0.45rem;
}

.vertical-detail p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

.vertical-facts {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.vertical-facts li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text);
}

.vertical-facts li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold, #c9a227);
}

.vertical-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.vertical-brand-chip {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 999px;
}

.vertical-case {
    padding: 1rem 1.15rem;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.08), rgba(201, 162, 39, 0.02));
    border-left: 3px solid var(--gold, #c9a227);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 1.25rem;
}

.vertical-case h3 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold, #b8922e);
    margin: 0 0 0.4rem;
}

.vertical-case p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
}

.case-study-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1rem;
}

.case-study-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* ─── Global presence ─── */
.global-map-placeholder {
    background: linear-gradient(135deg, #0e1219, #1e2a3d);
    border-radius: var(--radius-lg);
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    margin-bottom: 2rem;
    border: 1px solid var(--border-dark);
}

.region-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    height: 100%;
}

/* ─── Insights / IR ─── */
.insight-card,
.ir-metric-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    height: 100%;
    transition: box-shadow 0.3s, transform 0.3s;
}

.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.ir-metric-card strong {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    display: block;
}

/* ─── Careers portal ─── */
.career-culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.culture-pillar {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}

.culture-pillar i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.role-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

/* ─── Contact ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* ─── Sitemap ─── */
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
}

.sitemap-grid h3 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    color: var(--gold);
}

.sitemap-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-grid a {
    display: block;
    padding: 0.35rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.sitemap-grid a:hover {
    color: var(--bg);
}

.footer-grid--wide {
    grid-template-columns: 1.4fr repeat(4, 1fr);
}

@media (max-width: 1100px) {
    .footer-grid--wide {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom-inner a {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.dropdown-menu-lg {
    min-width: 240px;
}
