:root{
    --charcoal-950:#181110;
    --charcoal-900:#231a17;
    --charcoal-800:#2f2320;
    --charcoal-700:#3d2c27;
    --rust-600:#c1440e;
    --rust-500:#e2591c;
    --amber-400:#f2a65a;
    --ink:#1c1512;
    --gray-600:#6b625b;
    --gray-200:#ece5dd;
    --bg-soft:#faf6f1;
    --white:#ffffff;
  }
  *{box-sizing:border-box;margin:0;padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color:var(--ink);
    background:var(--white);
    line-height:1.6;
  }
  a{color:inherit;text-decoration:none;}
  img,svg{display:block;max-width:100%;}
  .container{
    width:100%;
    max-width:1140px;
    margin:0 auto;
    padding:0 24px;
  }

  /* Header */
  header{
    position:sticky;
    top:0;
    z-index:50;
    background:rgba(255,255,255,0.96);
    backdrop-filter:saturate(180%) blur(8px);
    border-bottom:1px solid var(--gray-200);
  }
  .nav-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 24px;
    max-width:1140px;
    margin:0 auto;
    gap:16px;
  }
  .logo{
    display:flex;
    align-items:center;
    gap:10px;
  }
  .logo-text{
    display:flex;
    flex-direction:column;
    line-height:1.1;
  }
  .logo-text .name{
    font-weight:800;
    font-size:19px;
    letter-spacing:0.3px;
    color:var(--charcoal-900);
  }
  .logo-text .name span{color:var(--rust-600);}
  .logo-text .sub{
    font-size:10px;
    font-weight:600;
    letter-spacing:2.5px;
    color:var(--gray-600);
    text-transform:uppercase;
  }
  nav ul{
    display:flex;
    list-style:none;
    gap:28px;
  }
  nav a{
    font-size:14.5px;
    font-weight:600;
    color:var(--charcoal-900);
    transition:color .15s ease;
  }
  nav a:hover{color:var(--rust-600);}
  .nav-toggle{display:none;}

  @media (max-width:760px){
    nav ul{
      position:fixed;
      top:64px;
      left:0;
      right:0;
      background:var(--white);
      flex-direction:column;
      gap:0;
      border-bottom:1px solid var(--gray-200);
      max-height:0;
      overflow:hidden;
      transition:max-height .25s ease;
    }
    nav ul.open{max-height:320px;}
    nav ul li{border-top:1px solid var(--gray-200);}
    nav ul li a{display:block;padding:14px 24px;}
    .nav-toggle{
      display:flex;
      flex-direction:column;
      gap:5px;
      background:none;
      border:none;
      cursor:pointer;
      padding:8px;
    }
    .nav-toggle span{
      width:22px;
      height:2px;
      background:var(--charcoal-900);
      border-radius:2px;
    }
  }

  /* Hero / Banner */
  .hero{
    position:relative;
    background:linear-gradient(135deg,var(--charcoal-950) 0%,var(--charcoal-800) 55%,var(--rust-600) 130%);
    overflow:hidden;
    padding:88px 0 100px;
  }
  .hero-shapes{
    position:absolute;
    inset:0;
    pointer-events:none;
  }
  .hero-shape{position:absolute;}
  .hero-shape-1{right:-120px;top:-140px;opacity:0.5;}
  .hero-shape-2{left:-140px;bottom:-160px;opacity:0.6;}
  .hero-content{
    position:relative;
    max-width:680px;
  }
  .badge-pill{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(226,89,28,0.16);
    border:1px solid rgba(242,166,90,0.45);
    color:var(--amber-400);
    font-size:13px;
    font-weight:700;
    letter-spacing:0.4px;
    padding:7px 16px;
    border-radius:999px;
    margin-bottom:22px;
  }
  .badge-pill .dot{
    width:6px;height:6px;border-radius:50%;background:var(--amber-400);
  }
  .hero h1{
    color:var(--white);
    font-size:clamp(30px,5vw,46px);
    font-weight:800;
    line-height:1.15;
    margin-bottom:20px;
  }
  .hero h1 em{
    font-style:normal;
    color:var(--amber-400);
  }
  .hero p{
    color:#e6d9d0;
    font-size:17px;
    max-width:560px;
    margin-bottom:32px;
  }
  .hero-ctas{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
  }
  .btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:14px 26px;
    border-radius:10px;
    font-weight:700;
    font-size:15px;
    cursor:pointer;
    border:1px solid transparent;
    transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  }
  .btn-primary{
    background:var(--amber-400);
    color:var(--charcoal-950);
    box-shadow:0 10px 24px rgba(242,166,90,0.28);
  }
  .btn-primary:hover{transform:translateY(-2px);box-shadow:0 14px 28px rgba(242,166,90,0.36);}
  .btn-ghost{
    background:transparent;
    color:var(--white);
    border-color:rgba(255,255,255,0.35);
  }
  .btn-ghost:hover{background:rgba(255,255,255,0.08);}

  /* Hero Carousel */
  .hero-carousel{
    position:relative;
    min-height:430px;
  }
  .hero-slide{
    position:absolute;
    inset:0;
    opacity:0;
    visibility:hidden;
    transition:opacity .6s ease;
  }
  .hero-slide.active{
    position:relative;
    opacity:1;
    visibility:visible;
  }
  .hero-partner-mini{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:rgba(255,255,255,0.07);
    border:1px solid rgba(255,255,255,0.16);
    border-radius:14px;
    padding:10px 16px;
    margin-bottom:22px;
  }
  .hero-partner-mini img{
    width:34px;
    height:34px;
    border-radius:9px;
    object-fit:contain;
    background:var(--white);
    padding:3px;
  }
  .hero-partner-mini span{
    font-size:12.5px;
    font-weight:700;
    letter-spacing:0.4px;
    color:#e6d9d0;
    text-transform:uppercase;
  }
  .hero-nav{
    display:flex;
    align-items:center;
    gap:18px;
    margin-top:44px;
    position:relative;
    z-index:2;
  }
  .hero-arrow{
    width:38px;
    height:38px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,0.3);
    background:rgba(255,255,255,0.06);
    color:var(--white);
    font-size:19px;
    line-height:1;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:background .15s ease, border-color .15s ease;
    flex:none;
  }
  .hero-arrow:hover{background:rgba(255,255,255,0.16);border-color:rgba(255,255,255,0.5);}
  .hero-dots{
    display:flex;
    gap:9px;
  }
  .hero-dot{
    width:9px;
    height:9px;
    border-radius:50%;
    border:none;
    background:rgba(255,255,255,0.3);
    cursor:pointer;
    padding:0;
    transition:background .2s ease, transform .2s ease;
  }
  .hero-dot.active{
    background:var(--amber-400);
    transform:scale(1.25);
  }
  @media (max-width:600px){
    .hero-carousel{min-height:560px;}
  }

  /* Hero slide 2 — MocaMoca brand look */
  .hero-bg-alt{
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,#0d8a76 0%,#12b39c 50%,#1ed6ab 130%);
    opacity:0;
    visibility:hidden;
    transition:opacity .6s ease;
    z-index:0;
  }
  .hero.is-partner-slide .hero-bg-alt{opacity:1;visibility:visible;}
  .hero.is-partner-slide .hero-shapes{opacity:0;transition:opacity .5s ease;}
  .hero-partner-grid{
    display:grid;
    grid-template-columns:1fr 320px;
    gap:36px;
    align-items:center;
  }
  .hero-partner-photo{display:flex;justify-content:center;}
  .hero-partner-photo img{
    width:100%;
    max-width:320px;
    border-radius:20px;
    object-fit:cover;
    box-shadow:0 20px 50px rgba(0,0,0,0.25);
  }
  .hero-feature-row{
    display:flex;
    gap:22px;
    flex-wrap:wrap;
    margin:26px 0 8px;
  }
  .hero-feature{display:flex;align-items:center;gap:10px;}
  .hero-feature .hf-icon{
    width:34px;height:34px;flex:none;
    border-radius:50%;
    background:rgba(255,255,255,0.16);
    border:1px solid rgba(255,255,255,0.32);
    display:flex;align-items:center;justify-content:center;
  }
  .hero-feature .hf-text{font-size:13px;color:#e4fff8;line-height:1.3;}
  .hero-feature .hf-text b{display:block;color:var(--white);font-size:14.5px;}
  @media (max-width:860px){
    .hero-partner-grid{grid-template-columns:1fr;}
    .hero-partner-photo{order:-1;max-width:240px;margin:0 auto 8px;}
  }

  /* Section generic */
  section{padding:84px 0;}
  .eyebrow{
    display:inline-block;
    font-size:12.5px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--rust-600);
    margin-bottom:12px;
  }
  .section-title{
    font-size:clamp(24px,3.4vw,34px);
    font-weight:800;
    color:var(--charcoal-950);
    margin-bottom:18px;
    max-width:640px;
  }
  .section-lead{
    color:var(--gray-600);
    font-size:16px;
    max-width:640px;
    margin-bottom:20px;
  }

  /* About */
  .about{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:56px;
    align-items:center;
  }
  .about-stats{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
  }
  .stat-card{
    background:var(--bg-soft);
    border:1px solid var(--gray-200);
    border-radius:14px;
    padding:22px;
  }
  .stat-card .num{
    font-size:26px;
    font-weight:800;
    color:var(--charcoal-900);
  }
  .stat-card .lbl{
    font-size:13px;
    color:var(--gray-600);
    margin-top:4px;
  }
  @media (max-width:860px){
    .about{grid-template-columns:1fr;}
  }

  /* Partnership */
  .alliance{background:var(--bg-soft);}
  .partner-card{
    background:var(--white);
    border:1px solid var(--gray-200);
    border-radius:20px;
    padding:40px;
    display:grid;
    grid-template-columns:auto 1fr;
    gap:32px;
    align-items:center;
    box-shadow:0 20px 50px rgba(24,17,16,0.08);
  }
  .partner-mark{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    width:150px;
    flex:none;
    gap:10px;
  }
  .partner-mark img{
    width:150px;
    height:150px;
    border-radius:22px;
    object-fit:contain;
    box-shadow:0 10px 24px rgba(24,17,16,0.18);
  }
  .partner-mark .partner-tag{
    font-size:10px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--gray-600);
    text-align:center;
  }
  .partner-copy .official{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(226,89,28,0.12);
    color:#a8380c;
    font-size:12.5px;
    font-weight:800;
    letter-spacing:0.5px;
    text-transform:uppercase;
    padding:6px 14px;
    border-radius:999px;
    margin-bottom:14px;
  }
  .partner-copy h3{
    font-size:22px;
    font-weight:800;
    color:var(--charcoal-950);
    margin-bottom:10px;
  }
  .partner-copy p{
    color:var(--gray-600);
    font-size:15px;
    margin-bottom:10px;
  }
  .partner-copy .fineprint{
    font-size:12.5px;
    color:#8d857e;
    border-top:1px dashed var(--gray-200);
    padding-top:14px;
    margin-top:14px;
  }
  @media (max-width:700px){
    .partner-card{grid-template-columns:1fr;text-align:center;justify-items:center;padding:28px;}
  }

  .services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
    margin-top:40px;
  }
  .service-card{
    border:1px solid var(--gray-200);
    border-radius:16px;
    padding:26px;
    background:var(--white);
  }
  .service-card .icon{
    width:44px;height:44px;
    border-radius:12px;
    background:var(--charcoal-900);
    display:flex;align-items:center;justify-content:center;
    margin-bottom:16px;
  }
  .service-card h4{font-size:16.5px;font-weight:800;color:var(--charcoal-950);margin-bottom:8px;}
  .service-card p{font-size:14px;color:var(--gray-600);}
  @media (max-width:860px){
    .services-grid{grid-template-columns:1fr;}
  }

  /* Contact */
  .contact{
    background:linear-gradient(135deg,var(--charcoal-950) 0%,var(--charcoal-800) 100%);
  }
  .contact .eyebrow{color:var(--amber-400);}
  .contact .section-title,.contact .section-lead{color:var(--white);}
  .contact .section-lead{color:#e6d9d0;}
  .contact-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:32px;
  }
  @media (max-width:700px){
    .contact-grid{grid-template-columns:1fr;}
  }
  .contact-address{
    margin-top:20px;
    color:#d9c4b8;
    font-size:14.5px;
    max-width:520px;
  }
  .contact-card{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.14);
    border-radius:16px;
    padding:26px;
    display:flex;
    gap:16px;
    align-items:flex-start;
  }
  .contact-card .icon{
    width:44px;height:44px;flex:none;
    border-radius:12px;
    background:var(--amber-400);
    display:flex;align-items:center;justify-content:center;
  }
  .contact-card .label{font-size:12.5px;color:#d9c4b8;font-weight:700;letter-spacing:0.5px;text-transform:uppercase;margin-bottom:4px;}
  .contact-card .value{font-size:16.5px;font-weight:700;color:var(--white);}
  .contact-card .value a{border-bottom:1px solid transparent;}
  .contact-card .value a:hover{border-color:var(--amber-400);}

  /* Footer */
  footer{
    background:var(--charcoal-950);
    color:#d9c4b8;
    padding:48px 0 26px;
    border-top:1px solid rgba(255,255,255,0.08);
  }
  .footer-top{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:32px;
    padding-bottom:28px;
    border-bottom:1px solid rgba(255,255,255,0.1);
  }
  .footer-brand .logo-text .name{color:var(--white);}
  .footer-brand p{
    max-width:360px;
    font-size:13.5px;
    margin-top:12px;
    color:#b3a396;
  }
  .footer-links{
    display:flex;
    gap:56px;
    flex-wrap:wrap;
  }
  .footer-links h5{
    font-size:12.5px;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--amber-400);
    margin-bottom:14px;
  }
  .footer-links ul{list-style:none;}
  .footer-links li{margin-bottom:10px;font-size:14px;}
  .footer-links a:hover{color:var(--white);}
  .footer-bottom{
    padding-top:22px;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:10px;
    font-size:12.5px;
    color:#b3a396;
  }
