/* ===================== */
/* VARIABLES             */
/* ===================== */
:root{
  --ink: #1f160d;
  --brown: #3a2716;
  --brown-2: #5b3a1f;
  --honey: #c79b3a;
  --gold: #d2ad57;
  --cream: #f2e3c2;
  --paper: #ead7b2;
  --shadow: rgba(0,0,0,.25);
  --radius: 14px;
  --max: 1100px;

  --serif: ui-serif, Georgia, "Times New Roman", Times, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* ===================== */
/* BASE STYLES           */
/* ===================== */
*{ box-sizing:border-box; }
html, body{ height:100%; }
body{
  margin:0;
  color:var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height:1.5;
}

img{ max-width:100%; display:block; }

a{
  color: inherit;
  text-decoration: none;
}

.container{
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

/* ===================== */
/* BUTTONS               */
/* ===================== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 800;
  letter-spacing: .5px;
  border: 2px solid transparent;
  text-transform: uppercase;
  font-size: 13px;
  box-shadow: 0 10px 18px var(--shadow);
}

.btn--primary{
  background: linear-gradient(180deg, var(--gold), var(--honey));
  color: #24170c;
  border-color: rgba(0,0,0,.25);
}

.btn--ghost{
  background: rgba(255,255,255,.18);
  border-color: rgba(0,0,0,.25);
}

/* ===================== */
/* HEADER / NAV          */
/* ===================== */
.siteHeader__bar{
  background: rgba(25, 15, 8, .65);
  border-bottom: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
}

.siteHeader__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 10px 0;
}

.siteHeader__brand img{
  width: 62px;
  height: auto;
  filter: drop-shadow(0 6px 8px rgba(0,0,0,.45));
}

.navToggle{
  display:inline-flex;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.25);
  color: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 800;
  letter-spacing: .4px;
}

.siteNav{
  display:none;
  gap: 10px;
}

.siteNav.is-open{
  display:flex;
  flex-direction:column;
  position:absolute;
  right: 16px;
  top: 64px;
  background: rgba(25, 15, 8, .92);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 10px;
  z-index: 10;
  width: min(260px, calc(100% - 32px));
}

.siteNav__link{
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 700;
}
.siteNav__link:hover{
  background: rgba(255,255,255,.08);
}

/* ===================== */
/* HERO SECTION          */
/* ===================== */
.hero{
  position: relative;
  min-height: 720px;              /* give more vertical room */
  overflow: hidden;
  border-bottom: 10px solid rgba(0,0,0,.22);
}

/* IMPORTANT: anchor the background to the top so the title/bees stay visible */
.hero__bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.15) 35%, rgba(0,0,0,.10) 70%, rgba(0,0,0,.25) 100%),
    url("/assets/img/inx/hero.png") top center/cover no-repeat; /* changed from center -> top */
  filter: saturate(1.05) contrast(1.03);

  /* REMOVE the scale – it causes extra cropping */
  transform: none;
}

.hero__inner{
  position: relative;
  min-height: inherit;

  display: flex;
  flex-direction: column;
  align-items: center;

  /* This pushes the CTA + nav lower in the hero */
  justify-content: flex-end;

  /* Controls how far down the group sits */
  padding: 40px 0 40px;

  text-align: center;
  color: #fff;
}

/* CTA visible and centered */
.hero__cta{
  margin: 14px 0 16px;
}

/* Nav sits directly under CTA */
.hero__nav{
  margin: 0; /* no auto margin tricks */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  padding: 14px 18px;

  width: min(980px, calc(100% - 48px));

  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  backdrop-filter: blur(6px);
}

.hero__navLink{
  color:#fff;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 12px;
}

.hero__navLink:hover{
  background: rgba(255,255,255,.10);
}

.hero__navLink.is-active{
  background: rgba(210, 173, 87, .28);
  border: 1px solid rgba(210, 173, 87, .55);
}

/* ===================== */
/* MISSION STRIP         */
/* ===================== */
.missionStrip{
  position:relative;
  padding: 42px 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.05)),
    url("/assets/img/global/texture-paper.webp") center/cover no-repeat;
  border-top: 10px solid rgba(0,0,0,.18);
  border-bottom: 10px solid rgba(0,0,0,.18);
}

.missionStrip__texture{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 12% 50%, rgba(199,155,58,.20), transparent 38%),
    radial-gradient(circle at 88% 50%, rgba(199,155,58,.18), transparent 40%),
    url("/assets/img/inx/scene-fields.webp") center/cover no-repeat;
  opacity: .25;
  pointer-events:none;
}

.missionStrip__headline{
  position:relative;
  margin:0;
  text-align:center;
  font-family: var(--serif);
  font-weight: 900;
  letter-spacing: .6px;
  font-size: clamp(20px, 3.2vw, 38px);
  color: var(--brown);
  text-shadow: 0 2px 0 rgba(255,255,255,.25);
}

/* ===================== */
/* FEATURES              */
/* ===================== */
.features{
  position:relative;
  padding: 36px 0 44px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(0,0,0,.06)),
    url("/assets/img/global/texture-paper.webp") center/cover no-repeat;
}

.features__divider{
  position:absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: url("/assets/img/inx/divider-honeycomb.webp") top/cover no-repeat;
  opacity: .40;
}

.features__grid{
  display:grid;
  gap: 18px;
  margin-top: 12px;
}

.featureCard{
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(0,0,0,.18);
  border-radius: var(--radius);
  box-shadow: 0 16px 30px rgba(0,0,0,.18);
  overflow:hidden;
  padding: 14px;
  text-align:center;
}

.featureCard__media{
  border-radius: 12px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.18);
  box-shadow: 0 12px 22px rgba(0,0,0,.18);
}

.featureCard__title{
  margin: 14px 0 8px;
  font-family: var(--serif);
  color: var(--brown);
  font-weight: 900;
  letter-spacing: .3px;
  font-size: 22px;
}

.featureCard__text{
  margin: 0 auto 14px;
  max-width: 42ch;
  color: rgba(31,22,13,.88);
  font-weight: 600;
  font-size: 14px;
}

/* ===================== */
/* CONTACT BAND          */
/* ===================== */
.contactBand{
  position:relative;
  padding: 46px 0 54px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.35)),
    url("/assets/img/inx/footer-scene.webp") center/cover no-repeat;
  border-top: 10px solid rgba(0,0,0,.22);
  color:#fff;
  text-align:center;
}

.contactBand__scene{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 10% 80%, rgba(199,155,58,.22), transparent 42%),
    radial-gradient(circle at 90% 20%, rgba(199,155,58,.18), transparent 40%);
  pointer-events:none;
}

.contactBand__inner{
  position:relative;
}

.contactBand__title{
  margin: 0 0 8px;
  font-family: var(--serif);
  font-weight: 900;
  letter-spacing: .6px;
  font-size: clamp(20px, 3.2vw, 34px);
  text-shadow: 0 10px 18px rgba(0,0,0,.55);
}

.contactBand__subtitle{
  margin: 0 0 14px;
  font-weight: 700;
  opacity: .95;
}

.contactBand__phone{
  margin: 10px 0 8px;
  font-weight: 900;
  font-size: clamp(26px, 4.2vw, 44px);
  letter-spacing: 1px;
}

.contactBand__email{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 800;
}

/* ===================== */
/* FOOTER                */
/* ===================== */
.siteFooter{
  background: #1a110a;
  color: rgba(255,255,255,.92);
  padding: 28px 0 18px;
}

.siteFooter__cols{
  display:grid;
  gap: 18px;
}

.siteFooter__title{
  margin: 0 0 8px;
  font-family: var(--serif);
  letter-spacing: .5px;
  text-transform: uppercase;
  font-weight: 900;
}

.siteFooter__text{
  margin:0;
  opacity: .92;
}

.siteFooter__links{
  margin:0;
  padding-left: 18px;
}

.siteFooter__links a{
  opacity: .92;
}
.siteFooter__links a:hover{
  opacity: 1;
  text-decoration: underline;
}

.siteFooter__fineprint{
  margin: 18px 0 0;
  opacity: .72;
  font-size: 13px;
  text-align:center;
}

/* ===================== */
/* MEDIA QUERIES         */
/* ===================== */
@media (min-width: 820px){
  .navToggle{ display:none; }
  .siteNav{
    display:flex;
    position:static;
    background: none;
    border: none;
    padding: 0;
    width:auto;
    flex-direction:row;
  }

  .siteNav__link{
    color:#fff;
    padding: 10px 12px;
  }

  .features__grid{
    grid-template-columns: repeat(3, 1fr);
  }

  .siteFooter__cols{
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items:start;
  }
}

@media (max-width: 768px){
  .hero{
    min-height: 600px;
  }
  .hero__inner{
    padding: 26px 0 22px;
  }
  .hero__nav{
    width: min(980px, calc(100% - 24px));
    padding: 12px 14px;
  }
}