  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --navy:   #0a1628;
      --navy2:  #0f2040;
      --gold:   #c8963e;
      --gold2:  #e8b860;
      --cream:  #f8f4ee;
      --white:  #ffffff;
      --gray:   #6b7280;
      --light:  #f0ece5;
      --text:   #1a2332;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5%;
      height: 72px;
      background: transparent;
      transition: background .4s, box-shadow .4s;
    }
    nav.scrolled {
      background: var(--navy);
      box-shadow: 0 2px 24px rgba(0,0,0,.3);
    }
    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 900;
      color: var(--white);
      letter-spacing: .04em;
    }
    .nav-logo span { color: var(--gold); }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a {
      color: rgba(255,255,255,.85);
      text-decoration: none;
      font-size: .88rem;
      font-weight: 500;
      letter-spacing: .06em;
      text-transform: uppercase;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      background: var(--gold);
      color: var(--navy) !important;
      padding: .5rem 1.2rem;
      border-radius: 3px;
      font-weight: 600 !important;
    }
    .nav-cta:hover { background: var(--gold2); color: var(--navy) !important; }

    /* burger */
    .burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .burger span { display: block; width: 24px; height: 2px; background: #fff; transition: .3s; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      background: var(--navy);
      display: flex; align-items: center;
      position: relative;
      overflow: hidden;
    }
    /* animated grid overlay */
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(200,150,62,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,150,62,.07) 1px, transparent 1px);
      background-size: 60px 60px;
      animation: gridSlide 20s linear infinite;
    }
    @keyframes gridSlide {
      from { background-position: 0 0; }
      to   { background-position: 60px 60px; }
    }
    .hero-glow {
      position: absolute;
      width: 700px; height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(200,150,62,.18) 0%, transparent 70%);
      right: -100px; top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
    }
    .hero-content {
      position: relative; z-index: 2;
      max-width: 1200px; margin: 0 auto; padding: 0 5%;
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: .6rem;
      color: var(--gold); font-size: .8rem; font-weight: 600;
      letter-spacing: .12em; text-transform: uppercase;
      margin-bottom: 1.5rem;
    }
    .hero-eyebrow::before {
      content: ''; display: block;
      width: 28px; height: 1px; background: var(--gold);
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.6rem, 5vw, 4rem);
      font-weight: 900;
      color: var(--white);
      line-height: 1.12;
      margin-bottom: 1.6rem;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--gold);
    }
    .hero p {
      color: rgba(255,255,255,.65);
      font-size: 1.05rem;
      line-height: 1.8;
      margin-bottom: 2.4rem;
      max-width: 480px;
    }
    .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn-primary {
      background: var(--gold);
      color: var(--navy);
      padding: .9rem 2rem;
      border-radius: 3px;
      font-weight: 700;
      font-size: .9rem;
      letter-spacing: .04em;
      text-decoration: none;
      transition: background .2s, transform .2s;
    }
    .btn-primary:hover { background: var(--gold2); transform: translateY(-2px); }
    .btn-outline {
      border: 1px solid rgba(255,255,255,.3);
      color: var(--white);
      padding: .9rem 2rem;
      border-radius: 3px;
      font-weight: 500;
      font-size: .9rem;
      text-decoration: none;
      transition: border-color .2s, background .2s;
    }
    .btn-outline:hover { border-color: var(--gold); background: rgba(200,150,62,.08); }

    /* hero stats */
    .hero-stats {
      display: flex; flex-direction: column; gap: 2rem;
      padding-left: 3rem;
      border-left: 1px solid rgba(255,255,255,.1);
    }
  
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: 900;
      color: var(--gold);
      line-height: 1;
    }
    .stat-label {
      color: rgba(255,255,255,.55);
      font-size: .82rem;
      font-weight: 400;
      letter-spacing: .06em;
      text-transform: uppercase;
      margin-top: .3rem;
    }

    /* ── SECTION SHARED ── */
    section { padding: 7rem 5%; }
    .section-inner { max-width: 1200px; margin: 0 auto; }
    .tag {
      display: inline-flex; align-items: center; gap: .5rem;
      color: var(--gold); font-size: .78rem; font-weight: 600;
      letter-spacing: .12em; text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .tag::before { content: ''; width: 20px; height: 1px; background: var(--gold); display: block; }
    h2.section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 1.2rem;
    }
    .section-sub {
      color: var(--gray);
      font-size: 1rem;
      line-height: 1.8;
      max-width: 560px;
    }

    /* ── VALUE PROPOSITION ── */
    #value { background: var(--cream); }
    .value-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      margin-top: 4rem;
    }
    .value-text h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.9rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 1.2rem;
    }
    .value-text p {
      color: var(--gray);
      line-height: 1.85;
      margin-bottom: 1rem;
    }
    .value-pillars {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem;
      margin-top: 2.5rem;
    }
    .pillar {
      background: var(--white);
      border: 1px solid rgba(0,0,0,.06);
      border-radius: 6px;
      padding: 1.4rem;
      transition: box-shadow .2s;
    }
    .pillar:hover { box-shadow: 0 8px 30px rgba(0,0,0,.08); }
    .pillar-icon {
      font-size: 1.4rem; margin-bottom: .7rem;
    }
    .pillar h4 {
      font-size: .88rem; font-weight: 700;
      color: var(--navy); margin-bottom: .3rem;
    }
    .pillar p { font-size: .8rem; color: var(--gray); line-height: 1.6; }

    /* value visual */
    .value-visual {
      position: relative;
    }
    .value-card {
      background: var(--navy);
      border-radius: 12px;
      padding: 3rem;
      color: white;
    }
    .value-card-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem; font-weight: 700; margin-bottom: 2rem;
      color: var(--gold);
    }
    .process-step {
      display: flex; gap: 1rem; align-items: flex-start;
      margin-bottom: 1.5rem;
    }
    .step-num {
      width: 32px; height: 32px; border-radius: 50%;
      background: var(--gold);
      color: var(--navy);
      font-weight: 800; font-size: .8rem;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .step-text h5 { color: var(--white); font-size: .9rem; font-weight: 600; margin-bottom: .2rem; }
    .step-text p { color: rgba(255,255,255,.5); font-size: .78rem; line-height: 1.5; }

    /* ── SERVICES ── */
    #services { background: var(--white); }
    .services-header {
      display: flex; justify-content: space-between; align-items: flex-end;
      flex-wrap: wrap; gap: 2rem;
      margin-bottom: 3.5rem;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      background: rgba(0,0,0,.06);
      border-radius: 8px;
      overflow: hidden;
    }
    .service-card {
      background: var(--white);
      padding: 2.2rem;
      transition: background .25s;
      cursor: default;
      position: relative;
      overflow: hidden;
    }
    .service-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s;
    }
    .service-card:hover { background: var(--cream); }
    .service-card:hover::after { transform: scaleX(1); }
    .service-icon {
      font-size: 2rem;
      margin-bottom: 1.2rem;
    }
    .service-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: .7rem;
    }
    .service-card p {
      color: var(--gray);
      font-size: .83rem;
      line-height: 1.7;
    }
    .service-link {
      display: inline-flex; align-items: center; gap: .4rem;
      color: var(--gold);
      font-size: .8rem; font-weight: 600;
      text-decoration: none;
      letter-spacing: .04em;
      margin-top: 1.2rem;
      transition: gap .2s;
    }
    .service-link:hover { gap: .7rem; }

    /* ── INDUSTRIES ── */
    #industries { background: var(--navy); }
    #industries h2.section-title { color: var(--white); }
    #industries .section-sub { color: rgba(255,255,255,.5); }
    .industries-scroll {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1rem;
      margin-top: 3.5rem;
    }
    .industry-tile {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 8px;
      padding: 1.8rem 1rem;
      text-align: center;
      transition: background .2s, border-color .2s, transform .2s;
      cursor: default;
    }
    .industry-tile:hover {
      background: rgba(200,150,62,.12);
      border-color: var(--gold);
      transform: translateY(-4px);
    }
    .industry-tile .ind-icon { font-size: 2rem; margin-bottom: .8rem; display: block; }
    .industry-tile span:last-child {
      color: rgba(255,255,255,.75);
      font-size: .78rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: .06em;
      display: block;
    }

    /* ── WHY BRECON ── */
    #why { background: var(--cream); }
    .why-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
      align-items: center; margin-top: 4rem;
    }
    .why-list { display: flex; flex-direction: column; gap: 1.5rem; }
    .why-item {
      display: flex; gap: 1.2rem;
      background: var(--white);
      border-radius: 8px;
      padding: 1.5rem;
      border-left: 3px solid var(--gold);
      box-shadow: 0 2px 12px rgba(0,0,0,.05);
    }
    .why-item-icon { font-size: 1.5rem; flex-shrink: 0; }
    .why-item h4 { color: var(--navy); font-weight: 700; margin-bottom: .3rem; }
    .why-item p { color: var(--gray); font-size: .83rem; line-height: 1.65; }

    .why-visual {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
    }
    .metric-box {
      background: var(--navy);
      border-radius: 10px;
      padding: 2rem 1.5rem;
      text-align: center;
    }
    .metric-box:first-child { grid-column: span 2; background: var(--gold); }
    .metric-box:first-child .metric-num { color: var(--navy); }
    .metric-box:first-child .metric-label { color: rgba(10,22,40,.65); }
    .metric-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem; font-weight: 900; color: var(--gold); line-height: 1;
    }
    .metric-label {
      color: rgba(255,255,255,.55);
      font-size: .75rem;
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-top: .4rem;
    }

    /* ── TRAININGS ── */
    #trainings { background: var(--white); }
    .trainings-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
      margin-top: 3.5rem;
    }
    .training-card {
      border: 1px solid rgba(0,0,0,.08);
      border-radius: 8px;
      padding: 2rem;
      transition: box-shadow .25s, transform .25s;
    }
    .training-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.1); transform: translateY(-3px); }
    .training-card .t-icon { font-size: 1.8rem; margin-bottom: 1rem; }
    .training-card h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); margin-bottom: .5rem; }
    .training-card p { font-size: .8rem; color: var(--gray); line-height: 1.65; }
    .training-tag {
      display: inline-block; margin-top: .8rem;
      background: var(--cream); color: var(--gold);
      font-size: .7rem; font-weight: 700;
      letter-spacing: .08em; text-transform: uppercase;
      padding: .25rem .7rem; border-radius: 2px;
    }

   /* ── FOOTER SOCIALS ── */
.footer-inner {
  flex-wrap: wrap;
  row-gap: 1rem;
}

.footer-socials {
  display: flex;
  gap: .8rem;
  align-items: center;
}

.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}

.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,150,62,.08);
}

/* ── WHATSAPP IN CONTACT ── */
.wa-contact-btn {
  display: inline-flex !important;
  align-items: center;
  gap: .4rem;
  background: #25d366 !important;
  color: #fff !important;
  padding: .5rem 1.2rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: .85rem !important;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s !important;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}

.wa-contact-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(37,211,102,.45) !important;
  color: #fff !important;
}

.wa-contact-btn ion-icon {
  font-size: 1.1rem;
}

/* ── DRAWER SOCIALS (ion-icons) ── */
.drawer-socials ion-icon {
  font-size: 1.1rem;
}

/* ── MOBILE NAV DRAWER ── */
.nav-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 150;
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .3s;
}

.nav-drawer-overlay.open {
  display: block;
  opacity: 1;
}

.nav-drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 280px;
  background: var(--navy);
  z-index: 200;
  padding: 2rem 0;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
}

.nav-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.drawer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
}

.drawer-logo span { color: var(--gold); }

.drawer-close {
  background: rgba(255,255,255,.08);
  border: none;
  color: var(--white);
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}

.drawer-close:hover { background: rgba(255,255,255,.15); }

.drawer-links {
  list-style: none;
  padding: 1.5rem 0;
  flex: 1;
}

.drawer-links li a {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .9rem 1.8rem;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
  transition: color .2s, background .2s, padding-left .2s;
  border-left: 3px solid transparent;
}

.drawer-links li a:hover {
  color: var(--gold);
  background: rgba(200,150,62,.07);
  padding-left: 2.2rem;
  border-left-color: var(--gold);
}

.drawer-cta-wrap {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}

.drawer-cta-wrap .btn-primary {
  display: block;
  text-align: center;
  width: 100%;
  padding: .85rem;
}

.drawer-socials {
  display: flex;
  gap: .6rem;
  padding: 1rem 1.5rem 0;
  justify-content: center;
}

.drawer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  text-decoration: none;
  color: #fff;
  transition: transform .2s;
}

.drawer-socials a:hover { transform: scale(1.15); }


/* ── LOGO IMAGES ── */
.nav-logo-img {
  height: 30px;
  width: auto;
  margin-top: 10px;
  display: block;
  object-fit: contain;
}

.drawer-logo-img {
  margin-top: 10px;
  height: 30px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-logo-img {
  height: 120px;
  width: auto;
  display: block;
  object-fit: contain;
  
  /* filter: brightness(0) invert(1); */
}

.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}
/* Hide burger/drawer on desktop */
@media(min-width: 769px) {
  .burger, .nav-drawer, .nav-drawer-overlay { display: none !important; }
}

@media(max-width: 768px) {
  .nav-links { display: none !important; }
  .footer-inner {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-links {
  justify-content: center;
}

.footer-socials {
  justify-content: center;
}
}

    /* ── CTA ── */
    #contact {
      background: var(--navy);
      text-align: center;
      padding: 7rem 5%;
      position: relative; overflow: hidden;
    }
    #contact::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(200,150,62,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,150,62,.06) 1px, transparent 1px);
      background-size: 40px 40px;
    }
    .cta-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
    .cta-inner .tag { justify-content: center; }
    .cta-inner h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 900;
      color: var(--white);
      margin-bottom: 1.2rem;
      line-height: 1.2;
    }
    .cta-inner h2 span { color: var(--gold); }
    .cta-inner p { color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 2.5rem; }
    .cta-form {
      display: flex; gap: 1rem;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 6px;
      padding: .5rem;
    }
    .cta-form input {
      flex: 1;
      background: transparent;
      border: none; outline: none;
      color: var(--white);
      font-size: .9rem;
      padding: .7rem 1rem;
    }
    .cta-form input::placeholder { color: rgba(255,255,255,.35); }
    .cta-form button {
      background: var(--gold);
      color: var(--navy);
      border: none;
      padding: .75rem 1.8rem;
      border-radius: 4px;
      font-weight: 700;
      font-size: .85rem;
      cursor: pointer;
      white-space: nowrap;
      transition: background .2s;
    }
    .cta-form button:hover { background: var(--gold2); }
    .cta-contact-info {
      display: flex; justify-content: center; gap: 3rem; margin-top: 2.5rem;
      flex-wrap: wrap;
    }
    .cta-contact-info a {
      color: rgba(255,255,255,.55);
      text-decoration: none; font-size: .85rem;
      display: flex; align-items: center; gap: .4rem;
      transition: color .2s;
    }
    .cta-contact-info a:hover { color: var(--gold); }

    /* ── FOOTER ── */
    footer {
      background: #060e1a;
      padding: 3rem 5% 2rem;
    }
    .footer-inner {
      max-width: 1200px; margin: 0 auto;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 1.5rem;
    }
    .footer-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem; font-weight: 900;
      color: var(--white);
    }
    .footer-logo span { color: var(--gold); }
    .footer-links { display: flex; gap: 1.8rem; flex-wrap: wrap; }
    .footer-links a {
      color: rgba(255,255,255,.4);
      text-decoration: none; font-size: .78rem;
      letter-spacing: .06em; text-transform: uppercase;
      transition: color .2s;
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-copy { color: rgba(255,255,255,.25); font-size: .75rem; }

    /* ── SCROLL REVEAL ── */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s, transform .7s; }
    .reveal.visible { opacity: 1; transform: none; }

    /* ── RESPONSIVE ── */
    @media(max-width: 1024px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .industries-scroll { grid-template-columns: repeat(3, 1fr); }
      .trainings-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media(max-width: 768px) {
      .nav-links { display: none; }
      .nav-links.open {
        display: flex; flex-direction: column;
        position: fixed; top: 72px; left: 0; right: 0;
        background: var(--navy);
        padding: 2rem 5%;
        gap: 1.5rem;
      }
      .burger { display: flex; }
      .hero-content { grid-template-columns: 1fr; }
      .hero-stats { border-left: none; padding-left: 0; flex-direction: row; flex-wrap: wrap; }
      .value-grid, .why-grid { grid-template-columns: 1fr; }
      .why-visual { display: none; }
      .services-grid { grid-template-columns: 1fr; }
      .industries-scroll { grid-template-columns: repeat(2, 1fr); }
      .trainings-grid { grid-template-columns: 1fr; }
      .cta-form { flex-direction: column; }
      .value-pillars { grid-template-columns: 1fr; }
    }