  :root {
    --navy: #0a1628;
    --deep: #111e38;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --cream: #f5f0e8;
    --warm-white: #faf8f4;
    --slate: #4a5568;
    --mid: #6b7280;
    --accent: #1a3a6b;
    --teal: #2d7a8a;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--navy);
    overflow-x: hidden;
  }

  /* ── NAV ── */
/* =========================================
   NAVBAR
========================================= */

/* =========================================
   NAVBAR
========================================= */

/* =========================
   NAVBAR
========================= */

nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:70px;

    background:#08111f;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 25px;

    z-index:9999;
}

/* LOGO */

.nav-logo img{
    width:180px;
}

/* NAV LINKS */

.nav-links{
    display:flex;
    gap:30px;
    list-style:none;
}

.nav-links a{
   color: rgba(245, 240, 232, 0.75);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: 0.3s ease;
}

/* BUTTON */

.nav-cta{
    background:var(--gold);;
    border:none;
    padding:10px 20px;
    border-radius:5px;
}

.nav-cta a{
    color:#000;
    text-decoration:none;
    font-weight:600;
}

/* HAMBURGER */

.menu-toggle{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.menu-toggle span{
    width:28px;
    height:3px;
    background:#fff;
    border-radius:10px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .menu-toggle{
        display:flex;
    }

    .nav-cta{
        display:none;
    }

    .nav-links{
        position:fixed;

        top:70px;
        right:-100%;

        width:280px;
        height:100vh;

        background:#08111f;

        flex-direction:column;

        padding:40px 25px;

        transition:0.4s;

        z-index:9999;
    }

    .nav-links.active{
        right:0;
    }
}

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--navy);
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background:
      radial-gradient(ellipse 60% 80% at 70% 50%, rgba(45,122,138,0.12) 0%, transparent 70%),
      radial-gradient(ellipse 40% 50% at 20% 80%, rgba(201,168,76,0.08) 0%, transparent 60%);
  }
  .hero-grid {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: linear-gradient(rgba(201,168,76,0.5) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.5) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .hero-left {
    padding: 140px 60px 100px 80px;
    position: relative; z-index: 2;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    color: var(--gold); font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    margin-bottom: 28px;
  }
  .hero-eyebrow::before {
    content: ''; width: 32px; height: 1px; background: var(--gold);
  }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 300; line-height: 1.05;
    color: var(--cream); margin-bottom: 28px;
  }
  .hero h1 em {
    font-style: italic; color: var(--gold);
  }
  .hero-sub {
    font-size: 1.05rem; line-height: 1.75;
    color: rgba(245,240,232,0.65); max-width: 480px;
    margin-bottom: 48px; font-weight: 300;
  }
  .hero-actions { display: flex; gap: 16px; align-items: center; }
  .btn-primary {
    background: var(--gold); color: var(--navy);
    padding: 16px 36px; border: none; cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    transition: all 0.25s; text-decoration: none; display: inline-block;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.3); }
  .btn-ghost {
    color: var(--cream); border: 1px solid rgba(245,240,232,0.3);
    padding: 15px 32px; background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem; font-weight: 500;
    letter-spacing: 0.06em; cursor: pointer;
    transition: all 0.25s; text-decoration: none; display: inline-block;
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
  .hero-right {
    position: relative; z-index: 2;
    padding: 140px 60px 100px 40px;
    display: flex; flex-direction: column; gap: 16px;
  }
  .hero-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero-stat {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.15);
    padding: 28px 24px;
    position: relative; overflow: hidden;
  }
  .hero-stat::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 40%; height: 2px; background: var(--gold);
  }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem; font-weight: 700;
    color: var(--gold); line-height: 1; margin-bottom: 6px;
  }
  .stat-label {
    color: rgba(245,240,232,0.6); font-size: 0.78rem;
    font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  }

  /* ── TICKER ── */
  .ticker {
    background: var(--gold); padding: 14px 0;
    overflow: hidden; white-space: nowrap;
  }
  .ticker-inner {
    display: inline-flex; gap: 0; animation: ticker 28s linear infinite;
  }
  .ticker-item {
    color: var(--navy); font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0 48px;
  }
  .ticker-dot {
    color: var(--navy); opacity: 0.4; font-size: 1rem;
    display: inline-flex; align-items: center;
  }
  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ── SECTION SHELL ── */
  section { position: relative; }
  .section-inner { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
  .section-tag {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--teal); font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 20px;
  }
  .section-tag::before { content: ''; width: 24px; height: 1px; background: var(--teal); }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 300; line-height: 1.15; color: var(--navy);
  }
  .section-title em { font-style: italic; color: var(--teal); }
  .section-title-light { color: var(--cream); }
  .section-title-light em { color: var(--gold); }
  .section-body {
    font-size: 1rem; line-height: 1.8; color: var(--slate);
    max-width: 600px; font-weight: 300;
  }

  /* ── ABOUT ── */
  .about {
    padding: 120px 0; background: var(--warm-white);
  }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }
  .about-visual {
    position: relative;
  }
  .about-img-block {
    background: var(--navy);
    height: 480px; position: relative;
    overflow: hidden;
  }
  .about-img-block::before {
    content: 'CONFERA GLOBAL';
    position: absolute; bottom: 24px; right: 24px;
    font-family: 'Playfair Display', serif;
    font-size: 0.6rem; font-weight: 700;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: rgba(201,168,76,0.4);
    writing-mode: vertical-rl;
  }
  .about-accent {
    position: absolute; top: -20px; right: -20px;
    width: 160px; height: 160px;
    border: 1px solid var(--gold); opacity: 0.3;
  }
  .about-accent2 {
    position: absolute; bottom: -20px; left: -20px;
    width: 100px; height: 100px;
    background: var(--gold); opacity: 0.08;
  }
  .about-img-inner {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #0a1628 0%, #1a3a6b 50%, #2d7a8a 100%);
    display: flex; align-items: center; justify-content: center;
  }
  .about-img-text {
    text-align: center;
  }
  .about-img-text .big-num {
    font-family: 'Playfair Display', serif;
    font-size: 7rem; font-weight: 900;
    color: rgba(201,168,76,0.15); line-height: 1;
  }
  .about-img-text .big-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; color: rgba(245,240,232,0.6);
    font-weight: 300; letter-spacing: 0.1em;
  }
  .about-pillars { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
  .about-pillar {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 20px; border-left: 2px solid transparent;
    transition: border-color 0.25s, background 0.25s;
    cursor: default;
  }
  .about-pillar:hover { border-left-color: var(--gold); background: rgba(201,168,76,0.04); }
  .pillar-icon {
    width: 44px; height: 44px; background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 1.2rem;
  }
  .pillar-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 6px; color: var(--navy); }
  .pillar-desc { font-size: 0.88rem; line-height: 1.6; color: var(--slate); font-weight: 300; }

  /* ── SERVICES ── */
  .services {
    padding: 120px 0;
    background: var(--navy);
    position: relative; overflow: hidden;
  }
  .services::before {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 50%; height: 100%;
    background: radial-gradient(ellipse at 80% 50%, rgba(45,122,138,0.1) 0%, transparent 70%);
  }
  .services-header {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: end; margin-bottom: 72px;
  }
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  }
  .service-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 40px 32px;
    transition: all 0.3s; cursor: default; position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: var(--gold);
    transition: width 0.35s;
  }
  .service-card:hover { background: rgba(255,255,255,0.07); }
  .service-card:hover::before { width: 100%; }
  .service-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; font-weight: 700;
    color: rgba(201,168,76,0.12);
    line-height: 1; margin-bottom: 20px;
  }
  .service-icon { font-size: 1.8rem; margin-bottom: 16px; }
  .service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 600;
    color: var(--cream); margin-bottom: 14px; line-height: 1.2;
  }
  .service-desc {
    font-size: 0.85rem; line-height: 1.75;
    color: rgba(245,240,232,0.5); font-weight: 300;
  }
  .service-list { list-style: none; margin-top: 16px; }
  .service-list li {
    font-size: 0.82rem; color: rgba(245,240,232,0.45);
    padding: 4px 0; padding-left: 14px; position: relative;
  }
  .service-list li::before {
    content: '→'; position: absolute; left: 0;
    color: var(--gold); font-size: 0.7rem;
  }

  /* ── PROCESS ── */
  .process {
    padding: 120px 0; background: var(--cream);
  }
  .process-header { text-align: center; margin-bottom: 72px; }
  .process-steps {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 0; position: relative;
  }
  .process-steps::before {
    content: ''; position: absolute;
    top: 36px; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .process-step { text-align: center; padding: 0 16px; }
  .step-circle {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--navy); border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px; position: relative; z-index: 1;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 700; color: var(--gold);
    transition: all 0.25s;
  }
  .process-step:hover .step-circle {
    background: var(--gold); color: var(--navy);
    box-shadow: 0 0 32px rgba(201,168,76,0.3);
  }
  .step-title {
    font-weight: 600; font-size: 0.9rem; color: var(--navy);
    margin-bottom: 10px; letter-spacing: 0.02em;
  }
  .step-desc {
    font-size: 0.82rem; line-height: 1.65; color: var(--slate); font-weight: 300;
  }

  /* ── SECTORS ── */
  .sectors {
    padding: 120px 0; background: var(--warm-white);
  }
  .sectors-header {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: end; margin-bottom: 60px;
  }
  .sector-tags { display: flex; flex-wrap: wrap; gap: 12px; }
  .sector-tag {
    padding: 12px 24px;
    border: 1px solid rgba(10,22,40,0.15);
    font-size: 0.85rem; font-weight: 500;
    color: var(--navy); cursor: default;
    transition: all 0.2s; letter-spacing: 0.02em;
  }
  .sector-tag:hover, .sector-tag.active {
    background: var(--navy); color: var(--cream);
    border-color: var(--navy);
  }
  .sector-tag.featured {
    background: var(--gold); color: var(--navy);
    border-color: var(--gold); font-weight: 600;
  }

  /* ── WHY US ── */
  .why {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
    position: relative; overflow: hidden;
  }
  .why::after {
    content: 'WHY US';
    position: absolute; right: -60px; top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: 'Playfair Display', serif;
    font-size: 8rem; font-weight: 900;
    color: rgba(255,255,255,0.03); letter-spacing: 0.2em;
    white-space: nowrap;
  }
  .why-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .why-features { display: flex; flex-direction: column; gap: 32px; }
  .why-feature {
    display: flex; gap: 24px;
    padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .why-feature:last-child { border-bottom: none; padding-bottom: 0; }
  .why-feature-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 700; color: var(--gold);
    opacity: 0.4; line-height: 1; flex-shrink: 0; width: 40px;
  }
  .why-feature-title {
    font-weight: 600; color: var(--cream); margin-bottom: 8px; font-size: 1rem;
  }
  .why-feature-desc {
    font-size: 0.88rem; line-height: 1.75; color: rgba(245,240,232,0.5); font-weight: 300;
  }
  .why-testimonial {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.2);
    padding: 48px 40px; position: relative;
  }
  .why-testimonial::before {
    content: '\201C';
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem; color: var(--gold); opacity: 0.2;
    position: absolute; top: -20px; left: 28px; line-height: 1;
  }
  .testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 300; font-style: italic;
    color: var(--cream); line-height: 1.5; margin-bottom: 32px;
    position: relative; z-index: 1;
  }
  .testimonial-author { display: flex; gap: 16px; align-items: center; }
  .author-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--accent));
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; color: white; font-size: 1.1rem;
    flex-shrink: 0;
  }
  .author-name { font-weight: 600; color: var(--cream); font-size: 0.9rem; }
  .author-title { font-size: 0.8rem; color: rgba(245,240,232,0.5); margin-top: 2px; }

  /* ── STATS STRIP ── */
  .stats-strip {
    background: var(--gold); padding: 64px 0;
  }
  .stats-row {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .stat-item {
    text-align: center; padding: 0 40px;
    border-right: 1px solid rgba(10,22,40,0.15);
  }
  .stat-item:last-child { border-right: none; }
  .stat-big {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem; font-weight: 900;
    color: var(--navy); line-height: 1; margin-bottom: 8px;
  }
  .stat-text {
    font-size: 0.85rem; color: rgba(10,22,40,0.65);
    font-weight: 500; letter-spacing: 0.04em;
  }

  /* ── EVENT TYPES ── */
  .event-types {
    padding: 120px 0; background: var(--warm-white);
  }
  .event-types-header { margin-bottom: 60px; }
  .events-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .event-card {
    position: relative; overflow: hidden;
    background: var(--navy); height: 300px;
    cursor: default;
  }
  .event-card-bg {
    position: absolute; inset: 0;
    transition: transform 0.5s;
  }
  .event-card:hover .event-card-bg { transform: scale(1.05); }
  .ec-bg-1 { background: linear-gradient(135deg, #0a1628 0%, #2d7a8a 100%); }
  .ec-bg-2 { background: linear-gradient(135deg, #1a3a6b 0%, #c9a84c 100%); }
  .ec-bg-3 { background: linear-gradient(135deg, #0a1628 0%, #3d1f6b 100%); }
  .ec-bg-4 { background: linear-gradient(135deg, #2d7a8a 0%, #0a1628 100%); }
  .ec-bg-5 { background: linear-gradient(135deg, #c9a84c 0%, #1a3a6b 100%); }
  .ec-bg-6 { background: linear-gradient(135deg, #3d1f6b 0%, #2d7a8a 100%); }
  .event-card-content {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 32px 28px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
  }
  .ec-icon { font-size: 2rem; margin-bottom: 12px; }
  .ec-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 600; color: var(--cream);
    margin-bottom: 8px;
  }
  .ec-desc { font-size: 0.8rem; color: rgba(245,240,232,0.65); font-weight: 300; line-height: 1.5; }

  /* ── SUSTAINABILITY ── */
  .sustainability {
    padding: 100px 0;
    background: var(--cream);
    text-align: center;
  }
  .sustain-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 56px;
  }
  .sustain-card {
    padding: 40px 32px; background: white;
    border-bottom: 3px solid transparent;
    transition: border-color 0.25s, transform 0.25s;
  }
  .sustain-card:hover { border-color: var(--gold); transform: translateY(-4px); }
  .sustain-icon { font-size: 2.5rem; margin-bottom: 16px; }
  .sustain-title { font-weight: 600; font-size: 1rem; margin-bottom: 12px; color: var(--navy); }
  .sustain-desc { font-size: 0.88rem; line-height: 1.7; color: var(--slate); font-weight: 300; }

  /* ── CTA ── */
  .cta-section {
    padding: 120px 0;
    background: var(--navy); text-align: center; position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
  }
  .cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
  .cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 300; color: var(--cream); line-height: 1.1; margin-bottom: 24px;
  }
  .cta-title em { font-style: italic; color: var(--gold); }
  .cta-desc {
    font-size: 1rem; line-height: 1.75; color: rgba(245,240,232,0.6);
    font-weight: 300; margin-bottom: 48px;
  }
  .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .cta-email {
    color: var(--gold); font-size: 0.9rem; margin-top: 28px;
    display: block; letter-spacing: 0.06em;
  }

  /* ── FOOTER ── */
  footer {
    background: #060e1c;
    padding: 80px 0 40px;
    color: rgba(245,240,232,0.5);
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px; margin-bottom: 60px;
  }
  .footer-brand .nav-logo { display: block; margin-bottom: 20px; }
  .footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-size: 1rem;
    color: rgba(245,240,232,0.4); margin-bottom: 24px; line-height: 1.5;
  }
  .footer-social { display: flex; gap: 12px; }
  .social-link {
    width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(245,240,232,0.5); text-decoration: none; font-size: 0.75rem;
    transition: all 0.2s;
  }
  .social-link:hover { border-color: var(--gold); color: var(--gold); }
  .footer-heading {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 20px;
  }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 10px; }
  .footer-links a {
    color: rgba(245,240,232,0.45); text-decoration: none;
    font-size: 0.85rem; transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--cream); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 32px; display: flex;
    justify-content: space-between; align-items: center;
  }
  .footer-copy { font-size: 0.78rem; }
  .footer-legal { display: flex; gap: 24px; }
  .footer-legal a {
    font-size: 0.78rem; color: rgba(245,240,232,0.35);
    text-decoration: none; transition: color 0.2s;
  }
  .footer-legal a:hover { color: var(--cream); }

  /* ── SCROLL ANIMATIONS ── */
  .fade-up {
    opacity: 0; transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  @media (max-width: 960px) {
    nav { padding: 0 24px; }
    /* .nav-links { display: none; } */
    .hero { grid-template-columns: 1fr; }
    .hero-left { padding: 120px 24px 60px; }
    .hero-right { display: none; }
    .section-inner { padding: 0 24px; }
    .about-grid, .services-header, .sectors-header, .why-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .process-steps::before { display: none; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .events-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .sustain-grid { grid-template-columns: 1fr; }
  }



  .creative-nav {
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(12px);
  border-radius: 1.2rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.creative-nav ul {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.creative-nav li {
  position: relative;
}

.creative-nav a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  border-radius: 0.8rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

/* Active / hovered state with bevel corner-shape (Chrome 139+) */
.creative-nav a.active,
.creative-nav a:hover {
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  color: white;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
  
  /* Experimental corner-shape for triangular/beveled look */
  border-radius: 1.2rem;
  corner-shape: bevel;           /* Makes sharp triangular corners */
  /* For more control: corner-shape: bevel scoop bevel scoop; */
}

/* Chevron separators (classic & fallback-safe) */
.creative-nav li:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: rgba(255,255,255,0.3);
  pointer-events: none;
  z-index: 0;
}

/* Optional: Make active chevron match gradient */
.creative-nav li.active + li::after,
.creative-nav li:hover + li::after {
  color: rgba(255,255,255,0.7);
}

/* Responsive tweaks */
@media (max-width: 640px) {
  .creative-nav ul {
    flex-direction: column;
    align-items: stretch;
  }
  
  .creative-nav li:not(:last-child)::after {
    content: none; /* Remove chevrons on mobile stack */
  }
  
  .creative-nav a {
    text-align: center;
    width: 100%;
  }
}

/* =========================================
   BREADCRUMB SECTION
========================================= */

.breadcrumb-section{
    position:relative;

    padding:180px 0 120px;

    background:
    linear-gradient(
    135deg,
    #08111f 0%,
    #0a1628 50%,
    #10203b 100%);

    overflow:hidden;
}

/* OVERLAY GLOW */

.breadcrumb-section::before{
    content:'';

    position:absolute;
    top:-100px;
    right:-100px;

    width:350px;
    height:350px;

    background:rgba(201,168,76,0.08);

    filter:blur(80px);

    border-radius:50%;
}

/* GRID EFFECT */

.breadcrumb-overlay{
    position:absolute;
    inset:0;

    background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);

    background-size:60px 60px;

    opacity:0.4;
}

/* CONTENT */

.breadcrumb-content{
    position:relative;
    z-index:2;
}

/* TAG */

.breadcrumb-tag{
    display:inline-flex;
    align-items:center;
    gap:12px;

    color:#c9a84c;

    font-size:13px;
    font-weight:600;

    letter-spacing:4px;
    text-transform:uppercase;

    margin-bottom:24px;
}

.breadcrumb-tag::before{
    content:'';

    width:40px;
    height:1px;

    background:#c9a84c;
}

/* TITLE */

.breadcrumb-title{
    font-family:'Cormorant Garamond', serif;

    font-size:72px;
    font-weight:300;

    color:#fff;

    line-height:1.1;

    margin-bottom:25px;
}

.breadcrumb-title span{
    color:#c9a84c;
    font-style:italic;
}

/* NAV */

.breadcrumb-nav{
    display:flex;
    align-items:center;
    gap:14px;

    flex-wrap:wrap;
}

.breadcrumb-nav a{
    color:rgba(255,255,255,0.75);

    text-decoration:none;

    font-size:15px;
    font-weight:500;

    transition:0.3s;
}

.breadcrumb-nav a:hover{
    color:#c9a84c;
}

.breadcrumb-nav span{
    color:#c9a84c;
    font-size:14px;
}

.breadcrumb-nav p{
    color:#fff;

    font-size:15px;
    font-weight:600;

    margin:0;
}

/* RESPONSIVE */

@media(max-width:991px){

    .breadcrumb-section{
        padding:160px 0 90px;
    }

    .breadcrumb-title{
        font-size:52px;
    }
}

@media(max-width:576px){

    .breadcrumb-section{
        padding:140px 0 70px;
    }

    .breadcrumb-title{
        font-size:38px;
    }

    .breadcrumb-tag{
        font-size:11px;
        letter-spacing:3px;
    }

    .breadcrumb-nav{
        gap:10px;
    }

    .breadcrumb-nav a,
    .breadcrumb-nav p{
        font-size:14px;
    }
}