 :root{
    --blue-deep: #0A2E5C;
    --blue-primary: #1B4EA0;
    --kraft: #C9A873;
    --kraft-dark: #7A5B30;
    --steel: #D3D2CD;
    --ink: #171E27;
    --white: #FFFFFF;
    --radius: 2px;
    --nav-height: 84px;
  }

  *{ box-sizing: border-box; }
  html,body{ margin:0; padding:0; }

  body{
    font-family: 'Barlow', sans-serif;
    color: var(--white);
    background: var(--blue-deep);
    -webkit-font-smoothing: antialiased;
  }

  a{ text-decoration:none; }

  /* ---------- NAV — floats transparently over the hero, no separate blue band ---------- */
  .navbar{
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    min-height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
  }

 
  /* ---------- HERO ---------- */
  .hero{
    position: relative;
    width: 100%;
    min-height: 78vh;
    overflow: hidden;
    background: linear-gradient(160deg, var(--blue-primary) 0%, var(--blue-deep) 100%);
    display: flex;
    align-items: flex-end;
  }

  .hero__img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% top;
  }

  .hero__scrim{
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
      rgba(10,46,92,0.88) 0%,
      rgba(10,46,92,0.55) 32%,
      rgba(10,46,92,0.05) 58%,
      rgba(10,46,92,0) 100%);
  }

  /* subtle top scrim so nav text/logo stay legible over bright parts of the photo */
  .hero::before{
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 160px;
    background: linear-gradient(180deg, rgba(10,46,92,0.65) 0%, rgba(10,46,92,0) 100%);
    z-index: 1;
    pointer-events: none;
  }

  .hero__content{
    position: relative;
    z-index: 2;
    padding: calc(var(--nav-height) + 48px) 32px 64px;
    max-width: 720px;
  }



  .eyebrow{
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--kraft);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
  }
  .eyebrow::before{
    content:"";
    width: 26px;
    height: 2px;
    background: var(--accent);
    display: inline-block;
  }

  .headline{
    font-family: 'Archivo Black', sans-serif;
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.01em;
    font-size: clamp(34px, 3vw, 68px);
    margin: 0 0 28px;
    text-transform: uppercase;
    color: (var(--white));
  }

  .cta-row{
    display:flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items:center;
  }

  .cta{
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--kraft);
    padding: 15px 28px;
    border-radius: var(--radius);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    transition: transform 0.15s ease, background 0.15s ease;
  }
  .cta:hover{ background: #DDBE8B; transform: translateY(-1px); }
  .cta::after{ content:"→"; font-weight:700; }

  /* stitched delivery ticket — signature element, echoes the kraft cement-bag stitching in the photo */
  .ticket{
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: 28px;
    background: var(--kraft);
    color: var(--ink);
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.06em;
    padding: 12px 18px;
    border: 2px dashed var(--kraft-dark);
    max-width: 190px;
    text-align: center;
    line-height: 1.3;
  }

  /* ---------- CONTACT BAR ---------- */
  .contact-bar{
    background: var(--steel);
    color: var(--ink);
    padding: 22px 24px;
    text-align: center;
  }
  .contact-bar__tagline{
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.01em;
    margin: 0 0 8px;
    text-transform: uppercase;
  }
  .contact-bar__details{
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 16px;
    margin: 0;
  }
  .contact-bar__details a{
    color: var(--ink);
    font-weight: normal;
  }

  /* ---------- DESKTOP ---------- */
  @media (min-width: 900px){
    .hero{ min-height: 92vh; }
    .hero__content{ padding: calc(var(--nav-height) + 64px) 80px 96px; }
    .ticket{ right: 60px; bottom: 40px; font-size: 13px; max-width: 210px; padding:16px 20px; }
    .contact-bar{ padding: 26px 40px; }
    .contact-bar__tagline{ font-size: 16px; display:inline; margin-right: 10px;}
    .contact-bar__details{ display:inline; font-size: 17px; }
  }

  @media (max-width: 899px){
    .hero__img{ object-position: 65% top; }

  

    .ticket{ left: 28px; right: auto; bottom: auto; top: calc(var(--nav-height) + 16px); }
    .hero__content{ padding-top: calc(var(--nav-height) + 72px); }
    .hero__scrim{
      background: linear-gradient(180deg,
        rgba(10,46,92,0.15) 0%,
        rgba(10,46,92,0.55) 55%,
        rgba(10,46,92,0.92) 100%);
    }
  }

  @media (prefers-reduced-motion: reduce){
    .cta{ transition: none; }
  }
/**/
.hero h1 {
  text-align: center;
  font-size: 2.5rem;
  margin: 2rem 0;
  color: #222;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}

.hero-image img {
  max-width: 400px;
  height: auto;
  border-radius: 8px;
}

.hero-text {
  max-width: 500px;
  font-size: 1.2rem;
  color: #333;
  text-transform: uppercase;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-text {
    text-align: center;
  }
  .hero-image img {
    max-width: 100%;
  }
}

 