  /* =========================
    HEADER
    ========================= */
  .site-header {
    /* Positioning */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    /* Layout */
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    /* Dimensions */
    width: 100%;
    height: var(--header-height);
    
    /* Spacing */
    padding: 0 8px;

    /* Visual Styling */
    background-color: #513C37;
    background: linear-gradient(to bottom, #513C37 0%, #422E2A 100%);
  }

  /* LOGO */
  .menu-logo {
    /* Layout */
    display: flex;
    align-items: center;

    /* Dimensions */
    height: 100%;
    max-width: 60%;
  }

  .menu-logo img {
    /* Layout */
    display: block;
    
    /* Dimensions */
    height: 40px;
    width: auto;
  }

  /* TOOGLE-BUTTON (Mobile) */
  .menu-toggle {
    /* Layout */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    /* Dimensions */
    width: 40px;
    height: 40px;
    
    /* Spacing */
    padding: 0;
    gap: 6px;

    /* Visual Styling */
    background: #EDD9B4;
    background: linear-gradient(to right, #EDD9B4 0%, #E0C8A0 100%);
    border: solid 1px #EDD9B4;
    border-radius: 2px;

    /* Interaction */
    cursor: pointer;
  }

  .menu-toggle span {
    /* Layout */
    display: block;

    /* Dimensions */
    width: 28px;
    height: 2px;

    /* Visual Styling */
    background-color: #513C37;
    border-radius: 2px;

    /* Animation */
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center; 
  }

  /* ANIMATION */
  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg); 
  }

  /* NAVIGATION */
  .menu {
    /* Hidden state   <--- connected with "menu.is-open" */ 
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;

    /* Positioning */
    position: fixed;
    top: var(--header-height);
    left: 0;
    z-index: 999;
    
    /* Dimensions */
    width: 100%;
    padding: 0;

    /* Animation */
    transition: opacity 200ms ease, transform 200ms ease;

    /* Visual Styling */
    border-block: 1px solid #EDD9B4;
  }

  .menu.is-open {
    /* Visible state   <--- connected with ".menu" */
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Reset list styling */
  .menu-list,
  .submenu-list {
    /* Layout / Reset */
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .menu-list{
    /* Visual Styling */
    background: linear-gradient(to bottom, #513C37 0%, #422E2A 100%);
  }

  .menu-link,
  .submenu-toggle {
  /* Visual Reset */
    background: none;
    border: none;

    /* Layout */
    display: flex;
    align-items: center;
    justify-content: center;

    /* Typography */
    line-height: 1;
    font: inherit;
    font-size: 16px;
    font-weight: normal;
    color: #EDD9B4;
    text-decoration: none;
    text-align: center;

    /* Dimensions */
    width: 100%;

    /* Spacing */
    padding: 14px 16px;

    /* Interaction */
    cursor: pointer;
  }

  .menu-item:hover,
  .submenu-item:hover{
    /* Visual Styling */
    background-color: rgba(237, 217, 180, 0.15);
    border-radius: 2px;
  }

  .submenu-list {
    /* Closed state (menu hidden) */
    max-height: 0;
    overflow: hidden;

    /* Animation */
    transition: max-height 200ms ease;
  }

  .submenu-list.is-open {
    /* Open state (menu open) */
    max-height: 500px;
  }

  .submenu-link {
    /* Layout */
    display: block;

    /* Spacing */
    padding: 12px 16px;

    /* Typography */
    text-decoration: none;
    font-size: 15px;
    font-weight: normal;
    color: #e3d6be;
    text-align: center;
  }