:root{
    --header-bg: #602103;
    --accent-gold: #DFAE70;
    --white: #ffffff;
  }



  /* ===== HEADER ===== */

  .site-header{
    background: var(--header-bg);
    width: 100%;
    position: relative;
  }

  .header-inner{
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
  }

  @media (min-width: 1580px){
    .header-inner{ width: 1530px; }
  }

  .logo-hero{
    display: block;
    line-height: 0;
    flex-shrink: 0;
  }

  .logo-hero img{
    width: 250px;
    height: auto;
    display: block;
  }

  @media (max-width: 700px){
    .logo-hero img{ width: 200px; }
  }

  /* ===== NAV (desktop) ===== */

  .main-nav ul{
    display: flex;
    list-style: none;
    align-items: center;
    gap: 38px;
  }

  .main-nav a{
    color: var(--white);
    text-decoration: none;
    font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: .2px;
    position: relative;
    padding-bottom: 4px;
    transition: color .25s ease;
    white-space: nowrap;
  }

  .main-nav a::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width .25s ease;
  }

  .main-nav a:hover{ color: var(--accent-gold); }
  .main-nav a:hover::after{ width: 100%; }

  /* ===== HAMBURGUER ===== */

  .hamburger{
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
  }

  .hamburger span{
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
  }

  .hamburger.active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2){ opacity: 0; }
  .hamburger.active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

  /* ===== NAV (mobile / dropdown, < 1024px) ===== */

  @media (max-width: 1024px){

    .hamburger{ display: flex; }

    .main-nav{
      position: absolute;
      top: 90%;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 20;
      background: var(--header-bg);
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease;
      box-shadow: 0 12px 20px -8px rgba(0,0,0,.35);
    }

    .main-nav.open{ max-height: 600px; }

    .main-nav ul{
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 6px 5%;
    }

    .main-nav ul li{
      border-top: 1px solid rgba(255,255,255,.12);
    }

    .main-nav ul li:first-child{ border-top: none; }

    .main-nav a{
      display: block;
      padding: 16px 0;
    }

    .main-nav a::after{ display: none; }
  }

  /* ===== HERO ===== */

  .hero{
    width: 100%;
    line-height: 0;
  }

  .hero picture{
    display: block;
  }

  .hero img{
    width: 100%;
    height: auto;
    display: block;
  }